1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-08-07 22:59:50 +00:00

Remove commented-out code

This commit is contained in:
Nicolas Braud-Santoni 2016-05-05 19:40:28 +02:00
parent 0f39b825e1
commit eb128e65a4
162 changed files with 2092 additions and 6594 deletions

View file

@ -28,7 +28,7 @@ class StateMachine
public:
StateMachine ();
virtual ~StateMachine() {}
void setState(int state, float time = -1, bool force = false);
void stopState(int state);
bool isState(int state);
@ -41,7 +41,7 @@ public:
enum
{
STATE_NONE = -1
};
};
virtual bool canSetState(int state);
protected:
@ -51,14 +51,14 @@ protected:
int currentState, nextState, prevState, enqueuedState;
float stateTime, enqueuedTime, stateExtraDT;
void onUpdate (float dt);
void resetStateCounter()
{ stateCounter = 0; }
private:
float stateCounter;
};
#endif