Esempio n. 1
0
 public Tree(int x, int y, TreeType treeType)
 {
     _x        = x;
     _y        = y;
     _treeType = treeType;
 }
Esempio n. 2
0
 public TreeSprite(string imagePath, TreeType treeType)
 {
     this.imagePath = imagePath;
     this.treeType  = treeType;
 }
Esempio n. 3
0
 public Tree(Tuple <int, int> position, TreeType treeType)
 {
     Position = position;
     TreeType = treeType;
 }