diff options
| author | oy <Tom_Adams@web.de> | 2010-12-11 22:04:50 +0100 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2010-12-11 22:04:50 +0100 |
| commit | ecd7afd9ffe8f764cf8fbc6f01aeef55b9e2aa7f (patch) | |
| tree | 09ad68dae4a82ceabdd19b13eea3b5163b304122 /src/engine/input.h | |
| parent | eb569e60bd98bc044b9cda8b11ffbe25b30382a2 (diff) | |
| download | zcatch-ecd7afd9ffe8f764cf8fbc6f01aeef55b9e2aa7f.tar.gz zcatch-ecd7afd9ffe8f764cf8fbc6f01aeef55b9e2aa7f.zip | |
added cleaner exit on quit event by Choupom
Diffstat (limited to 'src/engine/input.h')
| -rw-r--r-- | src/engine/input.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/input.h b/src/engine/input.h index 7e59669d..aa9be78f 100644 --- a/src/engine/input.h +++ b/src/engine/input.h @@ -83,7 +83,7 @@ class IEngineInput : public IInput MACRO_INTERFACE("engineinput", 0) public: virtual void Init() = 0; - virtual void Update() = 0; + virtual int Update() = 0; }; extern IEngineInput *CreateEngineInput(); |