12 lines
127 B
C++
12 lines
127 B
C++
#pragma once
|
|
#include "Header.h"
|
|
#include "State.h"
|
|
|
|
class InitState : public State
|
|
{
|
|
public:
|
|
InitState();
|
|
~InitState();
|
|
};
|
|
|