cleaning
This commit is contained in:
parent
0d82b26df2
commit
dd7ab78096
2 changed files with 0 additions and 26 deletions
|
@ -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";
|
||||
}
|
||||
}
|
||||
}
|
4
note.txt
4
note.txt
|
@ -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
|
Loading…
Reference in a new issue