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