diff options
Diffstat (limited to 'src/systems/pondering.h')
| -rw-r--r-- | src/systems/pondering.h | 10 |
1 files changed, 6 insertions, 4 deletions
| diff --git a/src/systems/pondering.h b/src/systems/pondering.h index 3fe5473..44e7600 100644 --- a/src/systems/pondering.h +++ b/src/systems/pondering.h | |||
| @@ -4,11 +4,13 @@ | |||
| 4 | #include "system.h" | 4 | #include "system.h" |
| 5 | 5 | ||
| 6 | class PonderingSystem : public System { | 6 | class PonderingSystem : public System { |
| 7 | public: | 7 | public: |
| 8 | PonderingSystem(Game& game) | ||
| 9 | : System(game) {} | ||
| 10 | 8 | ||
| 11 | void tick(double dt); | 9 | PonderingSystem(Game& game) : System(game) |
| 10 | { | ||
| 11 | } | ||
| 12 | |||
| 13 | void tick(double dt); | ||
| 12 | }; | 14 | }; |
| 13 | 15 | ||
| 14 | #endif /* end of include guard: PONDERING_H_F2530E0E */ | 16 | #endif /* end of include guard: PONDERING_H_F2530E0E */ |
