Package transientlibs.objects.primitives

Examples of transientlibs.objects.primitives.SmallPoints


    public Creature (){

        int x;

            for (x = 0; x < Stats.stats.size(); x++) {
            stats.add(new SmallPoints (4, 20));
            }

            for (x = 0; x < Perk.perks.size(); x++) {
            perks.add(new TBoolean(false));
            }
View Full Code Here


                //Log.info("Filling chances for look " + nowGroup.get(nowID).LName);
            }

            dice.rollDice();

            looks.add(new SmallPoints(dice.resultID, 100));

            //Log.info("Rolled "+nowGroup.get(dice.resultID).LName);

            dice.reset();
View Full Code Here

        }
    }

    public void bindPlusMinusToArrayList(PointSet<SmallPoints> fromArray) {

        SmallPoints nowPoints;
        int x = 0;
        Iterator<SmallPoints> i = fromArray.iterator();

        while (i.hasNext()) {
            nowPoints = i.next();
View Full Code Here

TOP

Related Classes of transientlibs.objects.primitives.SmallPoints

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.