Initial Commit

This commit is contained in:
Kirigaya Kazuto 2017-05-08 18:13:55 +08:00
commit 166edd3e46
4 changed files with 19 additions and 0 deletions

6
.gitignore vendored Normal file
View File

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

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 9d9ba52d76cce7a971216572d2959eb6a3753a57

9
main.cpp Normal file
View File

@ -0,0 +1,9 @@
#include <iostream>
using namespace std;
int main()
{
cout << "Hello world!" << endl;
return 0;
}