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 lines
303 B

  1. local PluginBase = require("luaScript.Plugins.PluginBase")
  2. local PluginZhuCheng = class("PluginZhuCheng", PluginBase)
  3. function PluginZhuCheng:ctor()
  4. PluginZhuCheng.super.ctor(self);
  5. end
  6. function PluginZhuCheng:gotoWeiXin()
  7. showTooltip("当前平台不支持该操作!")
  8. end
  9. return PluginZhuCheng