From 2b920f50ba965f48fa5825d6ebd17a74fc338aa2 Mon Sep 17 00:00:00 2001 From: TheBrokenRail Date: Sat, 25 Jun 2022 17:49:09 -0400 Subject: [PATCH] Improve Example Mod README --- example-mod/README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/example-mod/README.md b/example-mod/README.md index 0925ab9..0ce6607 100644 --- a/example-mod/README.md +++ b/example-mod/README.md @@ -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 +```