xref: /haiku/src/tests/kits/game/direct_window_test/Stars.h (revision ed24eb5ff12640d052171c6a7feba37fab8a75d1)
1 /*
2 
3 	Stars.h
4 
5 	by Pierre Raynaud-Richard.
6 
7 */
8 
9 /*
10 	Copyright 1999, Be Incorporated.   All Rights Reserved.
11 	This file may be used under the terms of the Be Sample Code License.
12 */
13 
14 #ifndef STARS_H
15 #define STARS_H
16 
17 #ifndef _APPLICATION_H
18 #include <Application.h>
19 #endif
20 #ifndef STAR_WINDOW_H
21 #include "StarWindow.h"
22 #endif
23 
24 /* not too much to be said... */
25 class StarsApp : public BApplication {
26 public:
27 					StarsApp();
28 
29 	bool			abort_required;
30 private:
31 	StarWindow		*aWindow;
32 };
33 
34 #endif
35