源战役客户端
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

18 wiersze
346 B

1 miesiąc temu
  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