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