diff options
author | zeldakatze <mail@zeldakatze.de> | 2025-10-03 23:41:33 +0200 |
---|---|---|
committer | zeldakatze <mail@zeldakatze.de> | 2025-10-03 23:44:51 +0200 |
commit | 885816be897838130354223de7f5c7e3fd54e216 (patch) | |
tree | ac81a4adf6ff471f210bc1ff868418e8ce4fbde6 /App.h | |
download | BeCapsulated-main.tar.gz BeCapsulated-main.zip |
Diffstat (limited to 'App.h')
-rw-r--r-- | App.h | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -0,0 +1,21 @@ +/* + * Copyright 2025, Maite Gamper <mail@zeldakatze.de> + * All rights reserved. Distributed under the terms of the MIT license. + */ +#ifndef APP_H +#define APP_H + + +#include <Application.h> + + +class App : public BApplication +{ +public: + App(); + virtual ~App(); + +private: +}; + +#endif // APP_H |