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