diff options
Diffstat (limited to 'src/game/GameController.h')
| -rw-r--r-- | src/game/GameController.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/game/GameController.h b/src/game/GameController.h index 3b5ff88..fffe26a 100644 --- a/src/game/GameController.h +++ b/src/game/GameController.h @@ -54,11 +54,12 @@ public: bool MouseWheel(int x, int y, int d); bool KeyPress(int key, Uint16 character, bool shift, bool ctrl, bool alt); bool KeyRelease(int key, Uint16 character, bool shift, bool ctrl, bool alt); + void Tick(); void SetZoomEnabled(bool zoomEnable); void SetZoomPosition(ui::Point position); - void AdjustBrushSize(int direction); - void AdjustZoomSize(int direction); + void AdjustBrushSize(int direction, bool logarithmic = false); + void AdjustZoomSize(int direction, bool logarithmic = false); void DrawPoints(int toolSelection, queue<ui::Point*> & pointQueue); void DrawRect(int toolSelection, ui::Point point1, ui::Point point2); void DrawLine(int toolSelection, ui::Point point1, ui::Point point2); |
