API Update
This commit is contained in:
parent
a96f2ed445
commit
d52a5b450b
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user