1/*
2 * Copyright 2013,	Jérôme DUVAL.
3 * All rights reserved. Distributed under the terms of the MIT license.
4 */
5#ifndef EULA_WINDOW_H
6#define EULA_WINDOW_H
7
8
9#include <Window.h>
10
11
12class EULAWindow : public BWindow {
13public:
14								EULAWindow();
15	virtual bool				QuitRequested();
16
17private:
18
19};
20
21#endif // EULA_WINDOW_H
22