Back to project page BoardGameDirector.
The source code is released under:
GNU General Public License
If you think the Android project BoardGameDirector listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.dilph.bgd.engine; // ww w . j ava 2s .c o m /** * Created with IntelliJ IDEA. * User: pseudo * Date: 8/3/13 * Time: 11:58 AM * To change this template use File | Settings | File Templates. */ /** * A TurnEvent represents events during a turn, such as GameActions and Decisions (or ifs). */ public interface TurnEvent { String getMessage(); TurnEvent getNext(boolean response); }