20 lines
246 B
C++
20 lines
246 B
C++
#include "window.hpp"
|
|
|
|
#define UNUSED(x) (void)(x)
|
|
|
|
int main(int argc, char **argv) {
|
|
UNUSED(argc);
|
|
UNUSED(argv);
|
|
|
|
AppState::GetInstance();
|
|
Renderer::GetInstance();
|
|
|
|
Window window(720, 480);
|
|
|
|
while (window.Running()) {
|
|
|
|
}
|
|
|
|
return 0;
|
|
}
|