Initial Commit

This commit is contained in:
Kirigaya Kazuto 2017-06-24 12:38:39 +08:00
commit 7f8317f752
4 changed files with 17 additions and 0 deletions

7
.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
bin/
obj/
*.cbp
*.depend
*.layout
*.dll

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "MiniEngine"]
path = MiniEngine
url = https://github.com/kiritow/MiniEngine

1
MiniEngine Submodule

@ -0,0 +1 @@
Subproject commit e87f513857a5cd22121e4084a6b2e0ffb393d1c8

6
main.cpp Normal file
View File

@ -0,0 +1,6 @@
#include "MiniEngine/MiniEngine.h"
int AppMain()
{
return 0;
}