This commit is contained in:
Pecha 2020-09-16 01:12:36 +10:00
parent 0d82b26df2
commit dd7ab78096
2 changed files with 0 additions and 26 deletions

View File

@ -1,22 +0,0 @@
namespace creachopedia {
class GroundCreacher:Creacher {
public GroundCreacher(string name, int footsyCount):base(name, footsyCount){
this.type = "creacher of the land";
}
}
class AirCreacher:Creacher {
public AirCreacher(string name, int footsyCount):base(name, footsyCount){
this.type = "creacher of the sky";
}
}
class WaterCreacher:Creacher{
public WaterCreacher(string name, int footsyCount):base(name, footsyCount){
this.type = "creacher of the water";
}
}
class UndergroundCreacher:Creacher {
public UndergroundCreacher(string name, int footsyCount):base(name, footsyCount){
this.type = "creacher that lives underground";
}
}
}

View File

@ -1,4 +0,0 @@
FOR NEXT VERSION:
- individuals/species distinction
- ability to add individuals without a previously-created species by creating them together
- fix "creacher of the urban" and such formatting issues