11 lines
155 B
C++
11 lines
155 B
C++
|
#include "Gedeng/Application.h"
|
||
|
|
||
|
namespace Gedeng {
|
||
|
|
||
|
void Application::run() {
|
||
|
while (true) {
|
||
|
// TODO: Implement
|
||
|
}
|
||
|
}
|
||
|
|
||
|
} // namespace Gedeng
|