25 lines
390 B
C++
25 lines
390 B
C++
/*
|
|
Copyright Alexandre Delcamp-Enache, 2026
|
|
Based on vkguide.dev
|
|
See engine.h for extensive documentation
|
|
Also, checkout the roadmap
|
|
*/
|
|
#define ENGINE_IMPL
|
|
#include "engine/engine.h"
|
|
|
|
|
|
int main(int argc, char* argv[]) {
|
|
Engine engine;
|
|
|
|
// Exemple of overwriting a class value
|
|
//engine._windowExtent = { 67, 67 };
|
|
|
|
engine.init();
|
|
|
|
engine.run();
|
|
|
|
engine.cleanup();
|
|
|
|
return 0;
|
|
}
|