summaryrefslogtreecommitdiff
path: root/includes/interface/Window.h
blob: 86a4bcd527967db949406fcf44f73185a365f8db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Window.h
 *
 *  Created on: Jan 8, 2012
 *      Author: Simon
 */

#ifndef WINDOW_H_
#define WINDOW_H_

#include "interface/State.h"

namespace ui {

class Window: public ui::State {
public:
	Window();
	virtual ~Window();
};

} /* namespace ui */
#endif /* WINDOW_H_ */