From dd7ab780962c305e550a4ba9de367c45946d7193 Mon Sep 17 00:00:00 2001 From: Pecha Date: Wed, 16 Sep 2020 01:12:36 +1000 Subject: [PATCH] cleaning --- CreacherTypes.cs | 22 ---------------------- note.txt | 4 ---- 2 files changed, 26 deletions(-) delete mode 100644 CreacherTypes.cs delete mode 100644 note.txt diff --git a/CreacherTypes.cs b/CreacherTypes.cs deleted file mode 100644 index 8f4239e..0000000 --- a/CreacherTypes.cs +++ /dev/null @@ -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"; - } - } -} \ No newline at end of file diff --git a/note.txt b/note.txt deleted file mode 100644 index 570f8c8..0000000 --- a/note.txt +++ /dev/null @@ -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 \ No newline at end of file