Beispiel #1
0
 public ClickMenu(Town town, Location location, Tile tile, Entity entity)
 {
     this.town = town;
     this.location = location;
     this.tile = tile;
     this.entity = entity;
     InitializeComponent();
 }
Beispiel #2
0
 public GameManager(Panel board)
 {
     this.board = board;
     imageProvider = new ImageProvider();
     town = new Town(gridSize);
 }