Back to project page pokerdrome.
The source code is released under:
Pokerdrome was released under the GPLv3+ (https://www.gnu.org/licenses/gpl.html) by darlose pokerengine (https://code.google.com/p/pokerengine/) was released under the Apache License 2.0 (https://www...
If you think the Android project pokerdrome 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.darlose.pokerdrome; /*from w w w .j a v a2 s . c o m*/ public class Player { private int credits; public Player() { credits = 10; } public void setCredits(int cr) { this.credits+=cr; } public int getCredits() { return this.credits; } }