summaryrefslogtreecommitdiff
path: root/includes/interface/Engine.h
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-01-15 19:35:40 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-01-15 19:35:40 (GMT)
commit2511afec8bfaa0582928406b37e8b579fa267e4f (patch)
treeaae1674f5f076db275ec1c6b32271a69cff1489a /includes/interface/Engine.h
parent2c9295007a287dc01ff63fcf7b3da141f7474e37 (diff)
downloadpowder-2511afec8bfaa0582928406b37e8b579fa267e4f.zip
powder-2511afec8bfaa0582928406b37e8b579fa267e4f.tar.gz
More stuff, better events and starting on interface
Diffstat (limited to 'includes/interface/Engine.h')
-rw-r--r--includes/interface/Engine.h4
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_;