(SubgameEntity self, GameExportsImpl gameExports)
| 644 | static EntThinkAdapter ChickMoan = new EntThinkAdapter() { |
| 645 | public String getID() { return "ChickMoan"; } |
| 646 | public boolean think(SubgameEntity self, GameExportsImpl gameExports) { |
| 647 | if (Lib.random() < 0.5) |
| 648 | gameExports.gameImports.sound(self, Defines.CHAN_VOICE, sound_idle1, 1, |
| 649 | Defines.ATTN_IDLE, 0); |
| 650 | else |
| 651 | gameExports.gameImports.sound(self, Defines.CHAN_VOICE, sound_idle2, 1, |
| 652 | Defines.ATTN_IDLE, 0); |
| 653 | return true; |
| 654 | } |
| 655 | }; |
| 656 | |
| 657 | static mframe_t chick_frames_fidget[] = new mframe_t[] { |
nothing calls this directly
no test coverage detected