1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-19 17:01:44 +02:00
openrw/rwgame/debugstate.hpp
2014-06-01 13:17:35 +01:00

22 lines
322 B
C++

#ifndef DEBUGSTATE_HPP
#define DEBUGSTATE_HPP
#include "State.hpp"
class DebugState : public State
{
public:
DebugState();
virtual void enter();
virtual void exit();
virtual void tick(float dt);
virtual void handleEvent(const sf::Event& event);
void spawnVehicle(unsigned int id);
};
#endif // DEBUGSTATE_HPP