2021-03-20 14:51:45 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Gedeng {
|
|
|
|
|
|
|
|
class Application {
|
2021-03-20 15:50:02 +01:00
|
|
|
public:
|
2021-03-20 14:51:45 +01:00
|
|
|
Application() = default;
|
|
|
|
|
|
|
|
// Virtual since this class will be inherited by user-created applications
|
|
|
|
virtual ~Application() = default;
|
|
|
|
|
|
|
|
void run();
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Gedeng
|