1
0
Fork 0

Rename DisplayExample to WindowExample

This commit is contained in:
Henrik Hautakoski 2023-08-22 07:17:51 +02:00
parent 24da7f45e0
commit 8901257bb6
6 changed files with 25 additions and 19 deletions

11
examples/window/main.cpp Normal file
View file

@ -0,0 +1,11 @@
#include "WindowExample.h"
int main(int argc, char **argv) {
WindowExample game;
game.run();
return 0;
}