projet-genie-logiciel-systeme/docs/uml.plantuml

58 lines
724 B
Plaintext
Raw Normal View History

2021-12-01 20:43:02 +00:00
@startuml game
2021-12-01 20:43:02 +00:00
' Classes
class Jeu {
}
class Explorateur {
2021-11-19 12:23:48 +00:00
- taille : int
}
2021-12-01 20:43:02 +00:00
class Territoire {
2021-11-18 20:48:15 +00:00
}
2021-12-01 20:43:02 +00:00
class Lieux {
- nom : String
2021-11-19 12:23:48 +00:00
- déposable : Condition
2021-12-01 20:43:02 +00:00
- départ : Condition
- fin : Condition
2021-11-18 20:48:15 +00:00
}
2021-12-01 20:43:02 +00:00
class Chemin {
2021-11-19 12:23:48 +00:00
- ouvert : Condition
- visible : Condition
- obligatoire : Condition
2021-11-18 20:48:15 +00:00
}
2021-12-01 20:43:02 +00:00
class Objet {
- nom : String
- taille : int
- visible : Condition
2021-11-18 20:48:15 +00:00
}
2021-12-01 20:43:02 +00:00
class Transformation {
- condition : Condition
2021-11-18 20:48:15 +00:00
}
2021-12-01 20:43:02 +00:00
class Connaissance {
- nom : String
- visible : Condition
2021-11-18 20:48:15 +00:00
}
2021-12-01 20:43:02 +00:00
class Personne {
- nom : String
- visible : Condition
- obligatoire : Condition
2021-11-20 11:42:20 +00:00
}
2021-12-01 20:43:02 +00:00
class Interaction {
- visible : Condition
2021-11-19 07:51:28 +00:00
}
2021-11-19 12:23:48 +00:00
' Links
Explorateur "0..1" -- "0..*" Connaissance
Explorateur "0..1" -- "0..*" Objet
2021-11-19 07:51:28 +00:00
@enduml