Package vindinium.Hero

Examples of vindinium.Hero.HeroState


        }
    }

    private State move(State s, Direction d) {
        Position newPos = move(s.hero.position, d);
        return new State(s, d, new HeroState(s.hero.life + deltaHp(newPos, s.hero.life), deltaGold(newPos), deltaMines(newPos), newPos));
    }
View Full Code Here

TOP

Related Classes of vindinium.Hero.HeroState

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.