kickactuator.java

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

JAVA
35
字号
/* * KickActuator.java */package EDU.gatech.cc.is.abstractrobot;/** * Interface to a kicking actuator for a soccer robot. * <P> * <P> * <A HREF="../COPYRIGHT.html">Copyright</A> * (c)1997, 1998 Tucker R. Balch * * @see SocSmall * @author Tucker Balch * @version $Revision: 1.1 $ */public interface KickActuator	{        /**         * Reveals whether or not the ball is in a position to be kicked.         * @param timestamp only get new information 	 *        if timestamp > than last call or timestamp == -1.         * @return true if the ball can be kicked, false otherwise.         */	public boolean canKick(long timestamp);	/**	 * If the ball can be kicked, kick it.         * @param timestamp not used, but retained for compatibility.	 */	public void kick(long timestamp);	}

⌨️ 快捷键说明

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