14 lines
243 B
C
14 lines
243 B
C
|
#pragma once
|
||
|
|
||
|
namespace Gedeng {
|
||
|
|
||
|
class Application {
|
||
|
Application() = default;
|
||
|
|
||
|
// Virtual since this class will be inherited by user-created applications
|
||
|
virtual ~Application() = default;
|
||
|
|
||
|
void run();
|
||
|
};
|
||
|
|
||
|
} // namespace Gedeng
|