commit 7f8317f752f3555b667e2bec489f32c4d56455fa Author: kiritow <1362050620@qq.com> Date: Sat Jun 24 12:38:39 2017 +0800 Initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e0ff25f --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +bin/ +obj/ +*.cbp +*.depend +*.layout +*.dll + diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..b3f1807 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "MiniEngine"] + path = MiniEngine + url = https://github.com/kiritow/MiniEngine diff --git a/MiniEngine b/MiniEngine new file mode 160000 index 0000000..e87f513 --- /dev/null +++ b/MiniEngine @@ -0,0 +1 @@ +Subproject commit e87f513857a5cd22121e4084a6b2e0ffb393d1c8 diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..2312712 --- /dev/null +++ b/main.cpp @@ -0,0 +1,6 @@ +#include "MiniEngine/MiniEngine.h" + +int AppMain() +{ + return 0; +}