Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #pragma once
- #include <string>
- class Bee
- {
- protected:
- std::string mName;
- std::string mJob;
- public:
- Bee(std::string name, std::string mJob);
- void DoJob();
- void Eat();
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement