Update Osztály diagram: small fixes in Data authored by Bahil Botond's avatar Bahil Botond
......@@ -32,7 +32,7 @@ package Logic.Data.World{
}
abstract Building extends TileObject{
+ OwnerColor(): Color{get}
+ Owner): GameTeam{get}
}
class Obstacle extends TileObject{
......@@ -65,7 +65,7 @@ package Logic.Data.Unit{
abstract Unit{
- _checkpoints: IList<TilePosition>
+ OwnerColor(): Color{get}
+ Owner(): GameTeam{get}
+ Cost(): int{get}
+ NextCheckpoint(): TilePosition
}
......@@ -114,6 +114,8 @@ enum Color{
RED
BLUE
}
Color --> GameTeam
GamePhase --> GameOverview
}
......
......