blob: ba5f43bf5487a58d8143a26e9af3f0679ba322e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef CONTROLFACTORY_H
#define CONTROLFACTORY_H
#include "Panel.h"
#include "Engine.h"
#include "GameSession.h"
class ControlFactory
{
public:
static ui::Panel * MainMenu(GameSession * session, int x, int y, int width, int height);
};
#endif // CONTROLFACTORY_H
|