(SubgameEntity self, GameExportsImpl gameExports)
| 469 | static EntThinkAdapter gunner_idlesound = new EntThinkAdapter() { |
| 470 | public String getID() { return "gunner_idlesound"; } |
| 471 | public boolean think(SubgameEntity self, GameExportsImpl gameExports) { |
| 472 | gameExports.gameImports.sound(self, Defines.CHAN_VOICE, sound_idle, 1, |
| 473 | Defines.ATTN_IDLE, 0); |
| 474 | return true; |
| 475 | } |
| 476 | }; |
| 477 | |
| 478 | static EntInteractAdapter gunner_sight = new EntInteractAdapter() { |
nothing calls this directly
no test coverage detected