summaryrefslogtreecommitdiff
path: root/sim/src/BaseSimulation.h
blob: 4d733829914391bb59a782f69e179436d4953197 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#pragma once

#include <kurator/engine/Context.h>
#include <kurator/sim/State.h>

#include "TeamManager.h"


namespace kurator
{
namespace sim
{


class BaseSimulation
{
public:
	explicit BaseSimulation(State& ctx);
	void operator()(engine::Context& ctx);
private:
	TeamManager manager;
};


}  // namespace sim
}  // namespace kurator