Package com.sirenian.hellbound.stories

Source Code of com.sirenian.hellbound.stories.TheGlyphIsConstrainedByThePit

package com.sirenian.hellbound.stories;

import org.jbehave.core.story.domain.Narrative;

import com.sirenian.hellbound.scenarios.TheGlyphWillNotMoveDown;
import com.sirenian.hellbound.scenarios.TheGlyphWillNotMoveLeft;
import com.sirenian.hellbound.scenarios.TheGlyphWillNotMoveRight;
import com.sirenian.hellbound.stories.util.HellboundStoryBase;

public class TheGlyphIsConstrainedByThePit extends HellboundStoryBase {

    public TheGlyphIsConstrainedByThePit() {
        super(new Narrative("game player", "the glyph to be constrained by the pit", "the game has boundaries"));
    }
   
    public void specify() {
        addScenario(new TheGlyphWillNotMoveRight());
        addScenario(new TheGlyphWillNotMoveLeft());
        addScenario(new TheGlyphWillNotMoveDown());
    }

}
TOP

Related Classes of com.sirenian.hellbound.stories.TheGlyphIsConstrainedByThePit

TOP
Copyright © 2018 www.massapi.com. 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.