16 lines
182 B
C++
16 lines
182 B
C++
#ifndef APP_H
|
|
#define APP_H
|
|
|
|
#define APP_NAME "Renga"
|
|
#define APP_AUTHOR "hex_andre"
|
|
|
|
#include <Application.h>
|
|
|
|
class App : public BApplication
|
|
{
|
|
public:
|
|
App(void);
|
|
};
|
|
|
|
|
|
#endif
|