summaryrefslogtreecommitdiff
path: root/src/situation.h
blob: aed63971be94c89a8df10ad190a496f2abbf8caf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef SITUATION_H
#define SITUATION_H

class Situation
{
public:
	Situation();
	virtual ~Situation();

private:
};

#endif