Changes
Page history
Update Osztály diagram
authored
Apr 26, 2022
by
Horváth István
Show whitespace changes
Inline
Side-by-side
Osztály-diagram.md
View page @
a0a88c3b
...
@@ -427,18 +427,11 @@ package Presentation.World {
...
@@ -427,18 +427,11 @@ package Presentation.World {
# `Presentation.UI` komponens (felhasználói felület)
# `Presentation.UI` komponens (felhasználói felület)
```
plantuml
```
plantuml
package Presentatio
n
.UI {
package Presentatio.UI {
class MainMenu {
class MainMenu {
}
}
class SimulationUI {
class SimulationUI {
+ TopPanel: string { constant }
+ NextButton: string { constant }
+ BudgetText: string { constant }
+ BottomPanel: string { constant }
+ teamRedColor: Color
+ teamBlueColor: Color
+ event OnTowerSelected: Action<Tower>
+ event OnTowerSelected: Action<Tower>
+ event OnBuildingPossibleChanges: Action<GameTeam>
+ event OnBuildingPossibleChanges: Action<GameTeam>
+ event OnBarrackSelected: Action<Barrack>
+ event OnBarrackSelected: Action<Barrack>
...
@@ -473,7 +466,7 @@ package Presentation.UI {
...
@@ -473,7 +466,7 @@ package Presentation.UI {
+ SetupCards(): void
+ SetupCards(): void
+ SetActivePlayer(Logic.Data.Color): void
+ SetActivePlayer(Logic.Data.Color): void
+ SetPlayerMoney(Color, int): void
+ SetPlayerMoney(Color, int): void
+
OnUnitBough(
): void
+
UpdateBoughtUnitCount(UnitTypeData
): void
+ UpdateUnitStatistics(GameTeam): void
+ UpdateUnitStatistics(GameTeam): void
+ event OnUnitPurchased: Action<UnitTypeData>
+ event OnUnitPurchased: Action<UnitTypeData>
...
...
...
...