Package net.sf.laja.cdd.behaviour.head

Examples of net.sf.laja.cdd.behaviour.head.Head


    @Test
    public void test() {
        MouthList mouths = MouthFactory.createList(MouthFactory.width(10).height(5).color("red"), MouthFactory.width(15).height(5).color("blue")).asMouthList(MouthSize.SMALL);

        NoseListCreator noses = Nose.createList(Nose.noseDescription("sd").details(""));
        Head head = Head
                .headWeightInGrams(200)
                .leftEye(Eye.eyeWeightInGrams(50).color(1))
                .rightEye(Eye.eyeWeightInGrams(51).color(2))
                .eyeWeightInGrams(40)
                .color("RED")
View Full Code Here


    private final Head head;

    public Monster(MonsterState state, MonsterStateBuilder stateBuilder) {
        super(state, stateBuilder);

        head = new Head(state, stateBuilder);
    }
View Full Code Here

TOP

Related Classes of net.sf.laja.cdd.behaviour.head.Head

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.