📄 eventnotifier.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -