animationinterface.java.svn-base
来自「這是一個JAVA語言寫的多代理人程式用來模擬飛機起飛或是降落的程式」· SVN-BASE 代码 · 共 17 行
SVN-BASE
17 行
package interfaces;
import java.util.List;
import base.*;
/**
* CSCI 201 FAA Project - Spring 2009 - Team 4c
*
* The constructor of an implementation of this should probably have a String name.
*
* @author Josh Villbrandt
*/
public interface AnimationInterface {
public void drawWorld(List<WorldObject> objects);
public void logMessage(String from, String to, String message);
public void updateStatus(String name, String message);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?