View Javadoc

1   package net.sourceforge.simplegamenet.connectaline;
2   
3   public class CALPlayerSettings /*extends PlayerSettings */ {
4   
5       private int score;
6       private int color;
7   
8       public CALPlayerSettings(int score, int color) {
9           this.score = score;
10          this.color = color;
11      }
12  
13      public int getCALPlayerScore() {
14          return score;
15      }
16  
17      public int getCALPlayerColor() {
18          return color;
19      }
20  }