diff options
| -rw-r--r-- | platypus/platypus.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/platypus/platypus.h b/platypus/platypus.h index 05cca77..7f3e9a8 100644 --- a/platypus/platypus.h +++ b/platypus/platypus.h @@ -10,14 +10,6 @@ /** A platypus */ class Platypus { private: - /** The platypus' weight */ - float weight; - /** The platypus' age in months */ - short age; - /** The platypus' alive state */ - bool alive; - /** The platypus' mutant state */ - bool mutant; /** The platypus' name */ std::string name; /** @@ -27,6 +19,14 @@ private: * */ std::string gender; + /** The platypus' weight */ + float weight; + /** The platypus' age in months */ + short int age; + /** The platypus' alive state */ + bool alive; + /** The platypus' mutant state */ + bool mutant; public: /** |