📄 controlsystemrescuevan.java
字号:
/* * ControlSystemRescueVan.java */package EDU.gatech.cc.is.abstractrobot;/** * This is the superclass for a CommN150 robot Control System. * When you create a contol system by extending this class, * it can run within JavaBotHard to control a real robot * or JavaBotSim in simulation. * <P> * <A HREF="../COPYRIGHT.html">Copyright</A> * (c)1997, 1998 Tucker Balch * * @see Simple * @author Tucker Balch * @version $Revision: 1.1 $ */public class ControlSystemRescueVan extends ControlSystemS { public RescueVan abstract_robot; /** * Initialize the object. Don't override this method, * use Configure instead. */ public final void init(Simple ar, long s) { super.init(ar,s); abstract_robot = (RescueVan)ar; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -