eventnotifier.java

来自「很好的windows驱动开发书记,基于WDM的,,可以很好的学习」· 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 + -
显示快捷键?