예제 #1
0
 public Player(String i_Name, Boolean i_IsComputer, Soilder.Group i_Colur)
 {
     this.m_Name         = i_Name;
     this.m_Score        = 0;
     this.m_OverAllScore = 0;
     this.m_IsComputer   = i_IsComputer;
     this.m_Group        = i_Colur;
 }
예제 #2
0
 public Player()
 {
     this.m_Name         = "";
     this.m_Score        = 0;
     this.m_OverAllScore = 0;
     this.m_IsComputer   = false;
     this.m_Group        = Soilder.Group.Non;
 }