Add slf4j to mixins and expose logger in Hooks for them

This commit is contained in:
Adam
2018-01-27 12:41:50 -05:00
parent 3d9542a8b4
commit e467ebdcf8
3 changed files with 14 additions and 2 deletions

View File

@@ -25,6 +25,7 @@
package net.runelite.client.callback;
import com.google.common.eventbus.EventBus;
import org.slf4j.Logger;
/**
* Dummy class to make the mixins to compile.
@@ -33,5 +34,7 @@ import com.google.common.eventbus.EventBus;
*/
public class Hooks
{
public static Logger log;
public static EventBus eventBus;
}