Skip to content

Commit 75f19ab

Browse files
committed
initial commit
0 parents  commit 75f19ab

Some content is hidden

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

50 files changed

+13624
-0
lines changed

.gitignore

Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
# Build #
2+
#########
3+
MANIFEST.MF
4+
dependency-reduced-pom.xml
5+
.checkstyle
6+
build.py
7+
8+
# Compiled #
9+
############
10+
bin
11+
build
12+
dist
13+
lib
14+
out
15+
run
16+
target
17+
*.com
18+
*.class
19+
*.dll
20+
*.exe
21+
*.o
22+
*.so
23+
classes/
24+
25+
# Databases #
26+
#############
27+
*.db
28+
*.sql
29+
*.sqlite
30+
31+
# Packages #
32+
############
33+
*.7z
34+
*.dmg
35+
*.gz
36+
*.iso
37+
*.rar
38+
*.tar
39+
*.zip
40+
41+
# Repository #
42+
##############
43+
.git
44+
45+
# Logging #
46+
###########
47+
/logs
48+
*.log
49+
50+
# Misc #
51+
########
52+
*.bak
53+
*.hprof
54+
*~
55+
56+
# Libraries #
57+
#############
58+
/libs
59+
/lib
60+
/CubicChunks
61+
62+
# System #
63+
##########
64+
.DS_Store
65+
ehthumbs.db
66+
Thumbs.db
67+
68+
# Project #
69+
###########
70+
.classpath
71+
.externalToolBuilders
72+
.gradle
73+
.nb-gradle
74+
.idea
75+
.project
76+
.settings
77+
eclipse
78+
nbproject
79+
atlassian-ide-plugin.xml
80+
build.xml
81+
nb-configuration.xml
82+
*.iml
83+
*.ipr
84+
*.iws
85+
86+
# eclipse
87+
bin
88+
*.launch
89+
.settings
90+
.metadata
91+
.classpath
92+
.project
93+
94+
# idea
95+
out
96+
*.ipr
97+
*.iws
98+
*.iml
99+
.idea
100+
101+
# gradle
102+
build
103+
.gradle
104+
105+
# other
106+
eclipse
107+
run
108+
109+
.nb-gradle-properties
110+
VERSION

.gitmodules

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

CREDITS-fml.txt

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
This is Forge Mod Loader.
2+
3+
You can find the source code at all times at https://github.com/MinecraftForge/FML
4+
5+
This minecraft mod is a clean open source implementation of a mod loader for minecraft servers
6+
and minecraft clients.
7+
8+
The code is authored by cpw.
9+
10+
It began by partially implementing an API defined by the client side ModLoader, authored by Risugami.
11+
http://www.minecraftforum.net/topic/75440-
12+
This support has been dropped as of Minecraft release 1.7, as Risugami no longer maintains ModLoader.
13+
14+
It also contains suggestions and hints and generous helpings of code from LexManos, author of MinecraftForge.
15+
http://www.minecraftforge.net/
16+
17+
Additionally, it contains an implementation of topological sort based on that
18+
published at http://keithschwarz.com/interesting/code/?dir=topological-sort
19+
20+
It also contains code from the Maven project for performing versioned dependency
21+
resolution. http://maven.apache.org/
22+
23+
It also contains a partial repackaging of the javaxdelta library from http://sourceforge.net/projects/javaxdelta/
24+
with credit to it's authors.
25+
26+
Forge Mod Loader downloads components from the Minecraft Coder Pack
27+
(http://mcp.ocean-labs.de/index.php/Main_Page) with kind permission from the MCP team.
28+

CubicChunks

Submodule CubicChunks added at 4ded9ec

0 commit comments

Comments
 (0)