(Event e)
| 22 | } |
| 23 | |
| 24 | @Override |
| 25 | public void accept(Event e) { |
| 26 | System.out.println(e); |
| 27 | if (e instanceof EventWindowCloseRequest) { |
| 28 | window.close(); |
| 29 | App.terminate(); |
| 30 | } else if (e instanceof EventFrame) { |
| 31 | paint(); |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | public void paint() { |
| 36 | layer.makeCurrent(); |