예제 #1
0
파일: Peca.cs 프로젝트: Ninolos/Chess
 public Peca(tabuleiro tab, Cor cor)
 {
     this.posicao       = null;
     this.cor           = cor;
     this.tab           = tab;
     this.qteMovimentos = 0;
 }
예제 #2
0
 public abstract bool movimentospossiveis(tabuleiro tab, Posicao origem, Posicao posicaodestino);