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; //from w w w . ja v a 2 s. c o m /** * Created with IntelliJ IDEA. * User: pseudo * Date: 8/3/13 * Time: 12:24 PM * To change this template use File | Settings | File Templates. */ public class BaseEvent { String message; public BaseEvent(String message) { this.message = message; } public String getMessage() { return message; } }