1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-18 16:32:32 +02:00
openrw/rwgame/loadingstate.hpp

27 lines
437 B
C++

#ifndef LOADINGSTATE_HPP
#define LOADINGSTATE_HPP
#include "State.hpp"
class LoadingState : public State
{
State* next;
public:
LoadingState(RWGame* game);
virtual void enter();
virtual void exit();
virtual void tick(float dt);
virtual void draw(GameRenderer* r);
void setNextState(State* nextState);
virtual bool shouldWorldUpdate();
virtual void handleEvent(const sf::Event& event);
};
#endif // LOADINGSTATE_HPP