Improve Example Mod README

This commit is contained in:
TheBrokenRail 2022-06-25 17:49:09 -04:00
parent d859a16b5a
commit 2b920f50ba
1 changed files with 9 additions and 1 deletions

View File

@ -6,4 +6,12 @@ This specific mod adds even more items and blocks to the Creative Inventory. It
## The SDK
The modding SDK is a collection of exported CMake targets that allows anyone to create their own MCPI mod!
It is copied to ``~/.minecraft-pi/sdk/lib/minecraft-pi-reborn-client/sdk/sdk.cmake`` whenever MCPI-Reborn is started.
The SDK is copied to ``~/.minecraft-pi/sdk/lib/minecraft-pi-reborn-client/sdk/sdk.cmake`` whenever MCPI-Reborn is started.
## How do I use this?
```sh
mkdir build
cd build
cmake ..
cp libexpanded-creative.so ~/.minecraft-pi/mods
```