mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-11 00:10:43 +00:00
Theres documentation at https://sylvessa.zip/fourkit/ now. And a bunch of other changes. Check the discord server for a more comprehensive list
11 lines
229 B
C#
11 lines
229 B
C#
namespace Minecraft.Server.FourKit.Inventory;
|
|
|
|
public interface InventoryHolder
|
|
{
|
|
/// <summary>
|
|
/// Get the object's inventory.
|
|
/// </summary>
|
|
/// <returns>The inventory.</returns>
|
|
Inventory getInventory();
|
|
}
|