源战役客户端
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

18 行
346 B

  1. require("game.sound.SoundModel")
  2. SoundController = SoundController or BaseClass(BaseController)
  3. function SoundController:__init()
  4. SoundController.Instance = self
  5. self.model = SoundModel:getInstance()
  6. self:RegisterProtocals()
  7. self:InitEvent()
  8. end
  9. function SoundController:RegisterProtocals()
  10. end
  11. function SoundController:InitEvent()
  12. end