源战役客户端
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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