WiiU Lib
WiiU Lib is a utility library that I extensively use when developing various Minecraft modifications. The main purpose of this tool is to simplify working with common programming tasks frequently encountered by mod developers.
Key features:
-
Wrappers for potentially null objects: Special wrapper classes that minimize errors related to handling null values, making the code more stable and secure.
-
Utilities for JSON operations: A set of tools for parsing, creating, and modifying JSON data. This is particularly useful when working with configuration files or external APIs.
-
Unified HTTP request system: A standardized class designed for sending requests to specified URLs and receiving responses. For example, it can easily request player data by their UUID via the Mojang API.
As this is a library, it doesn't add gameplay content directly but serves as a tool for other modifications that depend on its functionality.