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; /* w ww. j a v a2 s . c o m*/ /** * Created with IntelliJ IDEA. * User: pseudo * Date: 8/3/13 * Time: 12:40 PM * To change this template use File | Settings | File Templates. */ /** * Event to represent the end of a turn */ public class EndTurnEvent extends BaseEvent implements TurnEvent { public EndTurnEvent() { super("Turn ended"); } @Override public TurnEvent getNext(boolean response) { return null; } }