Timer.h 167 B

123456789101112
  1. #pragma once
  2. #include "GameObject.h"
  3. class Timer : public GameObject
  4. {
  5. private:
  6. bool läuft = false;
  7. bool pause = false;
  8. int maxz;
  9. bool wh = false;
  10. };