Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //---------------------------------------------------------------------------
- #ifndef cat_classH
- #define cat_classH
- //---------------------------------------------------------------------------
- class tcat {
- private:
- int hunger_mod, lucky_mod;
- int feed_timer, play_timer;
- int max_age;
- public:
- tcat(int m);
- int hunger, lucky;
- int age;
- bool alive;
- void feed();
- void play();
- void step(int n);
- };
- #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement