client: add NPCStats

This commit is contained in:
TheRealNull
2021-01-16 20:05:31 -08:00
parent ae43499467
commit 0b54af2deb
4 changed files with 248 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
package com.openosrs.client;
import com.openosrs.client.game.NPCStats;
import java.io.File;
import java.util.UUID;
@@ -10,4 +12,16 @@ public class OpenOSRS
public static final String SYSTEM_VERSION = "0.0.1";
public static String uuid = UUID.randomUUID().toString();
public static void init()
{
try
{
NPCStats.loadStats();
}
catch (Exception e)
{
e.printStackTrace();
}
}
}