summaryrefslogtreecommitdiff
path: root/src/engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine.h')
-rw-r--r--src/engine.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/engine.h b/src/engine.h
index 3ae380d6..dbe1fddc 100644
--- a/src/engine.h
+++ b/src/engine.h
@@ -26,8 +26,6 @@
#include <iosfwd>
-extern int camera_x, camera_y;
-
class Graphics;
class Map;
class Network;
@@ -68,21 +66,9 @@ class Engine
*/
void draw(Graphics *graphics);
- /**
- * Toggles whether the path debug graphics are shown
- */
- void toggleDebugPath() { mShowDebugPath = !mShowDebugPath; };
-
private:
- bool mShowDebugPath;
-
Map *mCurrentMap;
Network *mNetwork;
-
- int scrollRadius;
- int scrollLaziness;
- float view_x; // current viewpoint in pixels
- float view_y; // current viewpoint in pixels
};
extern Engine *engine;