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 w w . j a v a 2 s. c o m*/ /** * Created with IntelliJ IDEA. * User: pseudo * Date: 8/3/13 * Time: 7:34 PM * To change this template use File | Settings | File Templates. */ public class Player { private String name; public Player(String name) { this.name = name; } public String getName() { return name; } }