diff options
Diffstat (limited to 'src/engine.h')
-rw-r--r-- | src/engine.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/engine.h b/src/engine.h index dbe1fddc..90cee9c0 100644 --- a/src/engine.h +++ b/src/engine.h @@ -26,12 +26,12 @@ #include <iosfwd> -class Graphics; class Map; class Network; /** - * Game engine that does the main drawing. + * Game engine. Actually hardly does anything anymore except keeping track of + * the current map and loading the emotes. */ class Engine { @@ -61,11 +61,6 @@ class Engine */ void logic(); - /** - * Draws everything on the screen. - */ - void draw(Graphics *graphics); - private: Map *mCurrentMap; Network *mNetwork; |