Skip to content
This repository was archived by the owner on Sep 21, 2024. It is now read-only.

Commit 7c14bc7

Browse files
author
michidk
committed
Initial commit
0 parents  commit 7c14bc7

File tree

146 files changed

+12091
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

146 files changed

+12091
-0
lines changed

.gitignore

+234
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,234 @@
1+
#################
2+
## General
3+
#################
4+
5+
old.git
6+
.classpath
7+
.project
8+
.settings/
9+
target/
10+
/target
11+
.gitattributes
12+
*.iml
13+
*.idea
14+
*.ida
15+
/idea
16+
idea/
17+
/ida
18+
ida/
19+
dependency-reduced-pom.xml
20+
21+
#################
22+
## Eclipse
23+
#################
24+
25+
*.pydevproject
26+
.project
27+
.metadata
28+
bin/
29+
tmp/
30+
*.tmp
31+
*.bak
32+
*.swp
33+
*~.nib
34+
local.properties
35+
.classpath
36+
.settings/
37+
.loadpath
38+
39+
# External tool builders
40+
.externalToolBuilders/
41+
42+
# Locally stored "Eclipse launch configurations"
43+
*.launch
44+
45+
# CDT-specific
46+
.cproject
47+
48+
# PDT-specific
49+
.buildpath
50+
51+
52+
#################
53+
## Visual Studio
54+
#################
55+
56+
## Ignore Visual Studio temporary files, build results, and
57+
## files generated by popular Visual Studio add-ons.
58+
59+
# User-specific files
60+
*.suo
61+
*.user
62+
*.sln.docstates
63+
64+
# Build results
65+
66+
[Dd]ebug/
67+
[Rr]elease/
68+
x64/
69+
build/
70+
[Bb]in/
71+
[Oo]bj/
72+
73+
# MSTest test Results
74+
[Tt]est[Rr]esult*/
75+
[Bb]uild[Ll]og.*
76+
77+
*_i.c
78+
*_p.c
79+
*.ilk
80+
*.meta
81+
*.obj
82+
*.pch
83+
*.pdb
84+
*.pgc
85+
*.pgd
86+
*.rsp
87+
*.sbr
88+
*.tlb
89+
*.tli
90+
*.tlh
91+
*.tmp
92+
*.tmp_proj
93+
*.log
94+
*.vspscc
95+
*.vssscc
96+
.builds
97+
*.pidb
98+
*.log
99+
*.scc
100+
101+
# Visual C++ cache files
102+
ipch/
103+
*.aps
104+
*.ncb
105+
*.opensdf
106+
*.sdf
107+
*.cachefile
108+
109+
# Visual Studio profiler
110+
*.psess
111+
*.vsp
112+
*.vspx
113+
114+
# Guidance Automation Toolkit
115+
*.gpState
116+
117+
# ReSharper is a .NET coding add-in
118+
_ReSharper*/
119+
*.[Rr]e[Ss]harper
120+
121+
# TeamCity is a build add-in
122+
_TeamCity*
123+
124+
# DotCover is a Code Coverage Tool
125+
*.dotCover
126+
127+
# NCrunch
128+
*.ncrunch*
129+
.*crunch*.local.xml
130+
131+
# Installshield output folder
132+
[Ee]xpress/
133+
134+
# DocProject is a documentation generator add-in
135+
DocProject/buildhelp/
136+
DocProject/Help/*.HxT
137+
DocProject/Help/*.HxC
138+
DocProject/Help/*.hhc
139+
DocProject/Help/*.hhk
140+
DocProject/Help/*.hhp
141+
DocProject/Help/Html2
142+
DocProject/Help/html
143+
144+
# Click-Once directory
145+
publish/
146+
147+
# Publish Web Output
148+
*.Publish.xml
149+
*.pubxml
150+
151+
# NuGet Packages Directory
152+
#packages/
153+
154+
# Windows Azure Build Output
155+
csx
156+
*.build.csdef
157+
158+
# Windows Store app package directory
159+
AppPackages/
160+
161+
# Others
162+
sql/
163+
*.Cache
164+
ClientBin/
165+
[Ss]tyle[Cc]op.*
166+
~$*
167+
*~
168+
*.dbmdl
169+
*.[Pp]ublish.xml
170+
*.pfx
171+
*.publishsettings
172+
173+
# RIA/Silverlight projects
174+
Generated_Code/
175+
176+
# Backup & report files from converting an old project file to a newer
177+
# Visual Studio version. Backup files are not needed, because we have git ;-)
178+
_UpgradeReport_Files/
179+
Backup*/
180+
UpgradeLog*.XML
181+
UpgradeLog*.htm
182+
183+
# SQL Server files
184+
App_Data/*.mdf
185+
App_Data/*.ldf
186+
187+
#############
188+
## Windows detritus
189+
#############
190+
191+
# Windows image file caches
192+
Thumbs.db
193+
ehthumbs.db
194+
195+
# Folder config file
196+
Desktop.ini
197+
198+
# Recycle Bin used on file shares
199+
$RECYCLE.BIN/
200+
201+
# Mac crap
202+
.DS_Store
203+
204+
205+
#############
206+
## Python
207+
#############
208+
209+
*.py[co]
210+
211+
# Packages
212+
*.egg
213+
*.egg-info
214+
dist/
215+
build/
216+
eggs/
217+
parts/
218+
var/
219+
sdist/
220+
develop-eggs/
221+
.installed.cfg
222+
223+
# Installer logs
224+
pip-log.txt
225+
226+
# Unit test / coverage reports
227+
.coverage
228+
.tox
229+
230+
#Translations
231+
*.mo
232+
233+
#Mr Developer
234+
.mr.developer.cfg

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
base plugin with feature system for each Gamemode
2+
3+
4+

0 commit comments

Comments
 (0)