Ejemplo n.º 1
0
		public Tileset(string name, TilesetFactory factory)
			: this() {
			this.ID = factory.AllocateID();
			this.Name = name;
		}
Ejemplo n.º 2
0
 public Tileset(string name, TilesetFactory factory)
     : this()
 {
     this.ID   = factory.AllocateID();
     this.Name = name;
 }
Ejemplo n.º 3
0
		public Tileset(TilesetFactory factory) : this() {
			this.ID = factory.AllocateID();
		}
Ejemplo n.º 4
0
 public Tileset(TilesetFactory factory) : this()
 {
     this.ID = factory.AllocateID();
 }