X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp%2FState.cpp;fp=src%2Fapp%2FState.cpp;h=50b5bf601bc52c7027ce7408cc9410f3e767815d;hb=7252571fb926a187c4c40e8f4eec718f16d63ffa;hp=0000000000000000000000000000000000000000;hpb=2ccc2369d32fb680a3047519d79c17de34c4e10a;p=l2e.git diff --git a/src/app/State.cpp b/src/app/State.cpp new file mode 100644 index 0000000..50b5bf6 --- /dev/null +++ b/src/app/State.cpp @@ -0,0 +1,37 @@ +/* + * State.cpp + * + * Created on: Oct 17, 2012 + * Author: holy + */ + +#include "State.h" + +namespace app { + +State::~State() { + +} + + +void State::EnterState(Application &ctrl, SDL_Surface *screen) { + OnEnterState(ctrl, screen); +} + +void State::ExitState(Application &ctrl, SDL_Surface *screen) { + OnExitState(ctrl, screen); +} + +void State::ResumeState(Application &ctrl, SDL_Surface *screen) { + OnResumeState(ctrl, screen); +} + +void State::PauseState(Application &ctrl, SDL_Surface *screen) { + OnPauseState(ctrl, screen); +} + +void State::Resize(int width, int height) { + OnResize(width, height); +} + +}