Skip to content

Commit ea654b9

Browse files
committed
Initial commit.
1 parent 56b3af7 commit ea654b9

38 files changed

+2414
-2
lines changed

.gitignore

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Xcode
2+
#
3+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
4+
5+
.DS_Store
6+
7+
## User settings
8+
xcuserdata/
9+
10+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
11+
*.xcscmblueprint
12+
*.xccheckout
13+
14+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
15+
build/
16+
DerivedData/
17+
*.moved-aside
18+
*.pbxuser
19+
!default.pbxuser
20+
*.mode1v3
21+
!default.mode1v3
22+
*.mode2v3
23+
!default.mode2v3
24+
*.perspectivev3
25+
!default.perspectivev3
26+
27+
## Gcc Patch
28+
/*.gcno
29+
30+
*.d
31+
*.o
32+
*.dblite
33+
34+
# Godot
35+
.godot/
36+
*.png.import
37+
*.svg.import
38+
39+
# project specific
40+
bin/*
41+
godot/
42+
Pods/
43+
Podfile.lock
44+
45+
# Plugin-specific
46+
demo/addons/
47+
demo/ios/

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "godot"]
2+
path = godot
3+
url = https://github.com/godotengine/godot.git

0 commit comments

Comments
 (0)