Advertisement
Suby

simulation_rules.h

Jun 1st, 2012
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.43 KB | None | 0 0
  1. #ifndef SIMULATION_H
  2. #define SIMULATION_H
  3.  
  4. #include "board.h"
  5. #include "menu.h"
  6.  
  7. class Timer;
  8.  
  9. class Simulation_Rules
  10. {
  11. private:
  12.    
  13. public:
  14.     Simulation_Rules();
  15.     void SimulateTurn(Board &aBoardObject, Timer &Time, Menu &aMenuObject);
  16.  
  17.     void SimulateRuleOne(Board &aBoardObject);
  18.     void SimulateRuleTwo(Board &aBoardObject);
  19.     void SimulateRuleThree(Board &aBoardObject);
  20.     void SimulateRuleFour(Board &aBoardObject);
  21. };
  22. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement