9 lines
60 B
C++
9 lines
60 B
C++
#pragma once
|
|
class State
|
|
{
|
|
public:
|
|
State();
|
|
~State();
|
|
};
|
|
|