From 1e5f9d3078f236f306b5d868bcd52f4e47f7b512 Mon Sep 17 00:00:00 2001 From: Peter Kohaut Date: Sun, 14 Jan 2018 12:12:06 +0100 Subject: BLADERUNNER: Added basic KIA interface Settings works Help works Clue database works Fixed code for inserting objects into scene Reorganization of few files Unification & code formatting of few older files --- engines/bladerunner/mouse.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engines/bladerunner/mouse.h') diff --git a/engines/bladerunner/mouse.h b/engines/bladerunner/mouse.h index 214089fed6..64b01992d0 100644 --- a/engines/bladerunner/mouse.h +++ b/engines/bladerunner/mouse.h @@ -26,7 +26,7 @@ #include "bladerunner/vector.h" namespace Graphics { - struct Surface; +struct Surface; } namespace BladeRunner { @@ -52,11 +52,11 @@ public: void setCursor(int cursor); - void getXY(int *x, int *y); + void getXY(int *x, int *y) const; void disable(); void enable(); - bool isDisabled(); + bool isDisabled() const; void draw(Graphics::Surface &surface, int x, int y); void updateCursorFrame(); @@ -64,7 +64,7 @@ public: void tick(int x, int y); // private: - Vector3 getXYZ(int x, int y); + Vector3 getXYZ(int x, int y) const; }; } // End of namespace BladeRunner -- cgit v1.2.3