Added beginning of simulator

This commit is contained in:
2024-06-25 20:02:54 +02:00
parent 26d8058cf4
commit 6122aa1670
26 changed files with 34454 additions and 2 deletions
@@ -0,0 +1,20 @@
package com.bernard.greposimu.engine.game;
import com.bernard.greposimu.model.game.GameData;
public class Game {
GameData data;
public Heroes heroes;
public Buildings buildings;
public Fight fight;
public Game(GameData data) {
this.data = data;
this.heroes = new Heroes(this);
this.buildings = new Buildings(this);
this.fight = new Fight(this);
}
}