源战役客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
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