diff options
Diffstat (limited to 'dev/gfxtest/main.cc')
-rw-r--r-- | dev/gfxtest/main.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dev/gfxtest/main.cc b/dev/gfxtest/main.cc new file mode 100644 index 0000000..e01962f --- /dev/null +++ b/dev/gfxtest/main.cc @@ -0,0 +1,8 @@ +
+#include "gfx_test.h"
+
+int main(int argc, const char *argv[]) {
+ GfxTest app;
+ app.Run();
+ return 0;
+}
|