Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package rpcore.races;
- import net.risingworld.api.assets.TextureAsset;
- import rpcore.RPCore;
- import java.util.HashMap;
- public class Race {
- private RPCore rpCore;
- public String name = null;
- public HashMap<String, TextureAsset> avatars = null;
- public HashMap<String, String[]> raceInfo = null;
- public Race(RPCore rpCore,String name) {
- this.rpCore = rpCore;
- this.name = name;
- }
- protected void buildRace(HashMap<String, TextureAsset> avatars, HashMap<String, String[]> raceInfo){
- this.avatars = avatars;
- this.raceInfo = raceInfo;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement