#ifndef BLANK_STATE_H
#define BLANK_STATE_H
#include "BaseGameState.h"
class BlankState : public BaseGameState
{
public:
void Enter(GameGraphics& graphics) override;
void Draw(GameGraphics& graphics) override;
bool Update(GameUi::DrawItems &items, float a_elapsed) override;
};
#endif // BLANK_STATE_H