eventnotifier.java
来自「游戏编程AI源码」· Java 代码 · 共 12 行
JAVA
12 行
package bb;
/*
A so-far fairly empty event interface. Right now all it does is
distribute information about agent deaths to whoever is interested
(i.e. whatever class IMPLEMENTS the EventNotifier interface and
registers with the world to receive the event info).
*/
public interface EventNotifier {
public void deathNotification(Agent a, Vec2 location);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?