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