project(rsc): Fix compiling

This commit is contained in:
Owain van Brakel
2022-05-11 14:13:25 +02:00
parent ddb0c71731
commit 7f25d14cc3
4 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package com.jagex.oldscape.pub;
import net.runelite.mapping.Implements;
@Implements("OtlTokenResponse")
public interface OtlTokenResponse {
boolean isSuccess();
String getToken();
}