API Update

This commit is contained in:
Konloch 2021-07-06 15:18:25 -07:00
parent a96f2ed445
commit d52a5b450b

AI 샘플 코드 생성 중입니다

Loading...

View File

@ -19,19 +19,15 @@ package the.bytecode.club.bytecodeviewer.api;
***************************************************************************/ ***************************************************************************/
/** /**
* Whenever a function is executed, this class will be executed with the * Used for BCV-Injected bytecode hooks
* function callHook(String);
* *
* @author Konloch * @author Konloch
*/ */
public abstract class BytecodeHook { public interface BytecodeHook
{
/** /**
* Called whenever a function is called (And EZ-Injection has been * A callback event for functions that have been injected by EZ-Inject
* injected).
*
* @param information the full name of the class, method and method description.
*/ */
public abstract void callHook(String information); void callHook(String information);
} }