State.cpp 353 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #include "State.h"
  2. State::State()
  3. {
  4. }
  5. State::~State()
  6. {
  7. }
  8. void State::Entry()
  9. {
  10. }
  11. void State::Exit()
  12. {
  13. }
  14. void State::Idle(float delta)
  15. {
  16. }
  17. void State::Display()
  18. {
  19. }
  20. void State::Keyboard(bool keys[255],float deltaTime)
  21. {
  22. }
  23. void State::MouseMove(int x, int y, int dx, int dy)
  24. {
  25. }
  26. void State::MouseClick(int button, int type, int x, int y)
  27. {
  28. }