diff options
Diffstat (limited to 'includes/interface/Engine.h')
| -rw-r--r-- | includes/interface/Engine.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/interface/Engine.h b/includes/interface/Engine.h index 682a09d..6136fb4 100644 --- a/includes/interface/Engine.h +++ b/includes/interface/Engine.h @@ -30,7 +30,7 @@ namespace ui void onResize(int newWidth, int newHeight); void onClose(); - void Begin(int width, int height, SDL_Surface * surface); + void Begin(int width, int height); inline bool Running() { return running_; } void Exit(); @@ -46,7 +46,7 @@ namespace ui void SetState(State* state); inline State* GetState() { return state_; } - Graphics * g; + float FpsLimit; private: State* statequeued_; State* state_; |
