YoggieEngine/SandboxApplication/Sandbox.cpp
Nigel dab01f1541 Initial setup.
Correctly linking glfw and spdlog...
Linking could be improved by not needing the sandbox
application to also be linked with glfw
2022-04-20 21:40:35 +02:00

12 lines
161 B
C++

#include <MyGraphicsEngine/Graphics.h>
int main (int argc, char *argv[] ){
test();
BarinkWindow GameWindow(800, 600);
GameWindow.EnterLoop();
}