Advertisement
Cassimus

queen.h

May 14th, 2025
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #pragma once
  2. #include "Bee.h"
  3.  
  4. class Queen: public Bee
  5. {
  6. private:
  7.  
  8. public:
  9. Queen(std::string name,std::string job);
  10. void DoJob();
  11. };
  12.  
  13.  
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement