Back to project page hackfmi-ragdoll-physics.
The source code is released under:
GNU General Public License
If you think the Android project hackfmi-ragdoll-physics 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.midtownmadness.bubblecombar.model; /*www .j ava 2 s . com*/ public class GameModel { private final String gameName; public GameModel(final String gameName) { this.gameName = gameName; } public String getGameName() { return gameName; } @Override public String toString() { return "GameModel [gameName=" + gameName + "]"; } }