hardobject.java

来自「TeamBots 是一个可移植的多代理机器人仿真器」· Java 代码 · 共 27 行

JAVA
27
字号
/* * HardObject.java */package EDU.gatech.cc.is.abstractrobot;/** * If you want to control a real robot you must implement  this interface. * <P> * <A HREF="../COPYRIGHT.html">Copyright</A> * (c)1997, 1998 Tucker Balch * * @author Tucker Balch * @version $Revision: 1.1 $ */public interface HardObject	{        /**         * Take a hardware step.  This method should execute commands	 * issued to the control API by the control system and return	 * immediately.         */	public abstract void takeStep();	}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?