Package com.appspot.mscheckers.iACore

Examples of com.appspot.mscheckers.iACore.CPlayer


  private Position old = null;
  ///initialise les joueurs
  public CheckerModel(int mode, int level)
  {
    this.mode = mode;
    if( this.mode == 0)  {  plyr1 = new Player("moise",22,'w');  cplyr = new CPlayer('b', level)}
    else if(this.mode == 1)  {  plyr1 = new Player("moise",22,'w');  plyr2 = new Player("marc",22,'b');    }
  }
View Full Code Here


    this.mode = mode;
    this.mode = mode;
    if( mode == 0
    {
      plyr1 = new Player("moise",22,'w')
      cplyr = new CPlayer('b', level)
      plyr2 = null;
    }
    else if( mode == 1 )
    {
      plyr1 = null
      cplyr = new CPlayer('b', level)
      plyr2 = null;     
    }
    else if(mode == 2)
    {
      plyr1 = new Player("moise",22,'w')
View Full Code Here

TOP

Related Classes of com.appspot.mscheckers.iACore.CPlayer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.