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