Update Osztály diagram: Rename model to logic, data package added authored by Bahil Botond's avatar Bahil Botond
......@@ -2,7 +2,9 @@
```plantuml
package Model.World{
package Logic.Data{
package Logic.World{
interface ITowerTypeData{
+ Name(): String{get}
......@@ -62,7 +64,7 @@ package Model.World{
Tower "1" o-- ITowerTypeData
}
package Model.Unit{
package Logic.Unit{
abstract Unit{
......@@ -94,6 +96,7 @@ enum GameTeam{
RED
BLUE
}
}
```
......
......