mirror of
https://github.com/moparisthebest/MoparScape
synced 2024-11-13 12:45:01 -05:00
11 lines
177 B
Java
Executable File
11 lines
177 B
Java
Executable File
public class NPCList {
|
|
public int npcId;
|
|
public String npcName;
|
|
public int npcCombat;
|
|
public int npcHealth;
|
|
|
|
public NPCList(int _npcId) {
|
|
npcId = _npcId;
|
|
}
|
|
}
|