📄 baseplayer.java
字号:
/* * BasePlayer.java * * Created on 2007-9-29, 14:30:09 * * To change this template, choose Tools | Templates * and open the template in the editor. */package org.yangcq.logic.player;import org.yangcq.logic.chessboard.IChessboard;import org.yangcq.logic.search.ISearcher;/** * * @author Administrator */public abstract class BasePlayer implements IPlayer { private boolean chess(IChessboard board, int x, int y) { throw new UnsupportedOperationException("Not supported yet."); } public boolean surrender(IPlayer player) { throw new UnsupportedOperationException("Not supported yet."); } public boolean threaten(IPlayer player) { throw new UnsupportedOperationException("Not supported yet."); } public boolean repent(IPlayer player) { throw new UnsupportedOperationException("Not supported yet."); } public boolean isHumanPlayer() { throw new UnsupportedOperationException("Not supported yet."); } public boolean isChessmanBlack() { throw new UnsupportedOperationException("Not supported yet."); } public void setChessmanColor(boolean black) { throw new UnsupportedOperationException("Not supported yet."); } public void chess(IChessboard board) { throw new UnsupportedOperationException("Not supported yet."); } public void setAISearch(ISearcher searcher) { throw new UnsupportedOperationException("Not supported yet."); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -