ICT290 / src / main.cpp
main.cpp
Raw
#include "engine/engine.h"
#include "graphicCardSupport.h"

#undef main

int main() {
    Engine engine;
    engine.run();

    return 0;
}