1
0
Fork 0

Adding Event example

This commit is contained in:
Henrik Hautakoski 2020-10-14 13:20:55 +02:00
parent ec8eb971a5
commit 49f42e98f4
5 changed files with 70 additions and 1 deletions

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

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