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.

14 line
352 B

  1. --
  2. -- xx : 2018 3 27
  3. -- 跑得快战绩主界面
  4. local gameId = GAME_IDS.PaoDeKuai;
  5. local zhanjiListItem = "Views.ZhanJi.PdkZhanJiItem"
  6. local PdkZhanJiView = class("PdkZhanJiView", require("luaScript.Views.ZhanJi.ZhanJiViewBase"))
  7. function PdkZhanJiView:ctor()
  8. PdkZhanJiView.super.ctor(self, gameId, zhanjiListItem);
  9. end
  10. return PdkZhanJiView