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.

10 lines
290 B

  1. local PKProtocolZhanJi = class("PKProtocolZhanJi", require("luaScript.Protocol.ProtocolZhanJiGame"))
  2. function PKProtocolZhanJi:ctor()
  3. local rootName = getSubGameConfig(app.gameId).rootName
  4. PKProtocolZhanJi.super.ctor(self, app.gameId, "ZhanJi_"..rootName)
  5. end
  6. return PKProtocolZhanJi;