25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
245 B

  1. -- 主界面
  2. local CoinView = class("CoinView", require("core.luaScript.Views.Coin.CoinView"))
  3. function CoinView:ctor(...)
  4. CoinView.super.ctor(self,...)
  5. end
  6. function CoinView:onEnter()
  7. CoinView.super.onEnter(self)
  8. end
  9. return CoinView