Make Core Level Wrappers implement API wrappers

This commit is contained in:
James Seibel
2022-09-16 22:55:03 -05:00
parent fc5cb6796b
commit 9adf2a75f8
13 changed files with 48 additions and 34 deletions
@@ -6,10 +6,11 @@ package com.seibel.lod.api.items.interfaces;
* the base Minecraft Objects.
*
* @author James Seibel
* @version 2022-9-6
* @version 2022-9-16
*/
public interface IDhApiUnsafeWrapper
{
/**
* Returns the Minecraft object this wrapper contains. <br>
* <strong>Warning</strong>: This object will be Minecraft
@@ -20,6 +21,6 @@ public interface IDhApiUnsafeWrapper
* in order to determine what object this method returns for
* the specific version of Minecraft you are developing for.
*/
public Object getWrappedMcObject_UNSAFE();
Object getWrappedMcObject_UNSAFE();
}