Ejemplo n.º 1
0
 public MapObject()
 {
     type        = MapTypeObject.Empty;
     tilesStored = new List <Tile>();
     location    = Vector2.Zero;
     width       = 0;
     height      = 0;
 }
Ejemplo n.º 2
0
 public void SetType(MapTypeObject _type)
 {
     this.type = _type;
 }