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.

13 regels
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