Ajout des diagrammes de classe pour les différents packages

This commit is contained in:
2024-12-11 09:13:00 +01:00
parent a7be395f72
commit be5b9bf20e
12 changed files with 670 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

View File

@@ -0,0 +1,58 @@
@startuml
enum fr.monkhanny.dorfromantik.enums.TileOrientation {
+ NORTH
+ NORTH_EAST
+ SOUTH_EAST
+ SOUTH
+ SOUTH_WEST
+ NORTH_WEST
+ TileOrientation oppositeOrientation()
}
enum fr.monkhanny.dorfromantik.enums.Biome {
+ SEA
+ FIELD
+ PRE
+ FOREST
+ MOUNTAIN
+ Color[] getBiomeColors()
}
enum fr.monkhanny.dorfromantik.enums.Fonts {
+ TITLE
+ BUTTON
+ SCORE
+ String getFontPath()
+ Font getFont(float)
}
enum fr.monkhanny.dorfromantik.enums.Sounds {
+ SOUNDS1
+ SOUNDS2
+ String getSoundsPath()
}
enum fr.monkhanny.dorfromantik.enums.Images {
+ SETTINGS_ICON
+ EXIT_ICON
+ TUTORIAL_GIF1
+ TUTORIAL_GIF2
+ TUTORIAL_GIF3
+ TUTORIAL_GIF4
+ TUTORIAL_GIF5
+ TUTORIAL_GIF6
+ String getImagePath()
}
enum fr.monkhanny.dorfromantik.enums.Musics {
+ MAIN_MENU_MUSIC
+ String getSoundsPath()
}
@enduml