-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,15 @@ | ||
# MCMultiPart | ||
A universal multipart API for Minecraft 1.8.8 and above. | ||
A universal multipart API for Minecraft 1.8.9. | ||
|
||
The API is still unfinished. Suggestions are welcome, but bear in mind this is not the mod that will be adding microblocks, just the library that they will be built on top of. | ||
Suggestions are welcome, but bear in mind this is not the mod that will be adding microblocks, just the library that they will be built on top of. | ||
|
||
### Adding MCMultiPart to your workspace | ||
|
||
To add MCMultiPart to your dev environment and be able to use it in your mods, you need to add the following lines to the buildscript, replacing `<mcmp_version>` with the version you want to use: | ||
|
||
repositories { | ||
maven { url "http://maven.amadornes.com/" } | ||
} | ||
dependencies { | ||
deobfCompile "MCMultiPart:MCMultiPart:<mcmp_version>:universal" | ||
} |