Add Skybox plugin

This commit is contained in:
Max Weber
2019-01-05 20:03:05 -07:00
committed by Adam
parent 9a93250c9c
commit 9098d1fa94
9 changed files with 1700 additions and 1 deletions

View File

@@ -169,6 +169,9 @@ public abstract class RSClientMixin implements RSClient
@Inject
private static boolean oldIsResized;
@Inject
static int skyboxColor;
@Inject
@Override
public Callbacks getCallbacks()
@@ -1381,4 +1384,18 @@ public abstract class RSClientMixin implements RSClient
return array;
}
@Inject
@Override
public void setSkyboxColor(int newSkyboxColor)
{
skyboxColor = newSkyboxColor;
}
@Inject
@Override
public int getSkyboxColor()
{
return skyboxColor;
}
}