GameBase.java :  » Game » ipcards » ipcards » Java Open Source

Java Open Source » Game » ipcards 
ipcards » ipcards » GameBase.java
package ipcards;

public abstract class GameBase {
  
  protected PlayerModel player;
  
  public GameBase(PlayerModel player) {
    this.player = player;
  }
  
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.