Package be.demmel.jgws.utils

Examples of be.demmel.jgws.utils.IDManager


    private List<GWVector> possibleSpawns;
    private List<NpcData> npcs;
   
    public MapData() {
        //FIXME: what if it runs out of IDs?
        this.agentIDs = new IDManager(1, 1000);
        this.localIDs = new IDManager(1, 1000);
        this.possibleSpawns = new ArrayList<>();
        this.npcs = new ArrayList<>();
    }
View Full Code Here

TOP

Related Classes of be.demmel.jgws.utils.IDManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.