Deep RTS
GameState.h
Go to the documentation of this file.
1//
2// Created by per on 23.03.18.
3//
4
5#ifndef DEEPRTS_GAMESTATE_H
6#define DEEPRTS_GAMESTATE_H
7#include "StateChange.h"
8#include <list>
9
10
11class GameState {
12 std::list<StateChange> changes;
13};
14
15
16#endif //DEEPRTS_GAMESTATE_H
Definition: GameState.h:11