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