updatableboard.java
来自「ErGo是一个很早的Java通用围棋服务器(IGS/NNGS)客户端程序。有全部」· Java 代码 · 共 22 行
JAVA
22 行
package ergo.ui;
// $Id: UpdatableBoard.java,v 1.3 1999/08/27 03:07:56 sigue Exp $
/*
* Copyright (C) 1999 Carl L. Gay and Antranig M. Basman.
* See the file copyright.txt, distributed with this software,
* for further information.
*/
import ergo.logic.Move;
import ergo.util.Position;
// Interface allows levelisability.
public interface UpdatableBoard {
void updateInternal ();
boolean isReady ();
void reflect (int row, int column, int stone);
void noteMove (Move currentMove);
void setKoPosition (Position p);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?