diff options
Diffstat (limited to 'src/system.h')
| -rw-r--r-- | src/system.h | 4 |
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/system.h b/src/system.h index e08db0a..af3fb77 100644 --- a/src/system.h +++ b/src/system.h | |||
| @@ -7,9 +7,9 @@ class System { | |||
| 7 | public: | 7 | public: |
| 8 | System(Game& game) | 8 | System(Game& game) |
| 9 | : game(game) {} | 9 | : game(game) {} |
| 10 | 10 | ||
| 11 | virtual void tick(double dt) = 0; | 11 | virtual void tick(double dt) = 0; |
| 12 | 12 | ||
| 13 | protected: | 13 | protected: |
| 14 | Game& game; | 14 | Game& game; |
| 15 | }; | 15 | }; |
