Beispiel #1
0
 public Ore(int id, string n, string fn, double abundance, DropTable dt) : base(id, n, fn, TileType.Ore, dt)
 {
     Abundance = abundance;
 }
Beispiel #2
0
 public Patch(int id, string n, string fn, double abundance, DropTable dt) : base(id, n, fn, TileType.Patch, dt)
 {
     this.abundance = abundance;
 }
Beispiel #3
0
 public Breakable(int id, string n, string fn, TileType tt, DropTable dt) : base(id, n, fn, tt)
 {
     DropTable = dt;
 }