Minigame map/arena library to hold & store data.
minecraft minecraft-lib minecraft-library
2

Configure Feed

Select the types of activity you want to include in your feed.

worldadapter changess

* Removed ambiguous "world"
* Added getLocation, which should be used to build a usable Location from a world and a position

Lukiiy (Jun 22, 2026, 2:24 PM -0300) b45576d5 1dbec59f

+8 -4
+8 -4
src/main/kotlin/me/lukiiy/mapling/WorldAdapter.kt
··· 6 6 * An adapter for platforms! 7 7 * @param W Your World object. 8 8 */ 9 - interface WorldAdapter<W> { 10 - fun loadWorld(folder: File): W? 11 - fun saveWorld(world: W) 12 - fun unloadWorld(world: W): Boolean 9 + interface WorldAdapter<W, L> { 10 + fun load(folder: File): W? 11 + 12 + fun save(world: W) 13 + 14 + fun unload(world: W): Boolean 15 + 16 + fun getLocation(world: W, position: Position): L 13 17 }