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