Update Osztály diagram authored by Horváth István's avatar Horváth István
...@@ -122,7 +122,7 @@ enum Color{ ...@@ -122,7 +122,7 @@ enum Color{
# `Presentation.World` komponens (játéktér megjelenés) # `Presentation.World` komponens (játéktér megjelenés)
```plantuml ```plantuml
package Presentation.View { package Presentation.World {
enum PrepareStage { enum PrepareStage {
BUILDING_TOWERS BUILDING_TOWERS
PURCHASING_UNITS PURCHASING_UNITS
...@@ -459,14 +459,6 @@ abstract "BaseCommand<BiCommandResult>" extends BaseCommand{ ...@@ -459,14 +459,6 @@ abstract "BaseCommand<BiCommandResult>" extends BaseCommand{
Mindegyik `...Event`, ami nem interfész, az a `BaseEvent` alosztálya. Ez nincs jelölve a diagrammon a jobb átláthatóság érdekében. Mindegyik `...Event`, ami nem interfész, az a `BaseEvent` alosztálya. Ez nincs jelölve a diagrammon a jobb átláthatóság érdekében.
```plantuml
package Logic.Event.World {
class WorldSimulatedPhysicsEvent {
+ World() : GameWorld {get}
+ DeltaTime() : float {get}
}
```
```plantuml ```plantuml
package Logic.Event.World.Tower { package Logic.Event.World.Tower {
...@@ -542,6 +534,14 @@ class CastleDestroyedEvent implements ICastleEvent ...@@ -542,6 +534,14 @@ class CastleDestroyedEvent implements ICastleEvent
} }
``` ```
```plantuml
package Logic.Event.World {
class WorldSimulatedPhysicsEvent {
+ World() : GameWorld {get}
+ DeltaTime() : float {get}
}
```
# `Command`-ok (parancsok) # `Command`-ok (parancsok)
... ...
......