repository_infos: Enable automatic updates on the main Haiku repostiory.
[haiku.git] / src / apps / haiku3d / App.h
blobdf609d20466cb48dbaed029298c00c476ebbf59a
1 /*
2 * Copyright 2008, Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Alexandre Deckner <alex@zappotek.com>
7 */
8 #ifndef _APP_H
9 #define _APP_H
12 #include <Application.h>
15 class App : public BApplication {
16 public:
17 App();
18 virtual ~App();
20 virtual void ReadyToRun();
21 virtual bool QuitRequested();
23 protected:
24 BWindow* fMainWindow;
27 #endif /* _APP_H */