// This constructor adds a reference to the plugin to this EventHandler.
        public BreakDoorHandler(ZBDPlugin plugin)
        {
            this.plugin = plugin;

            markedDoorsPos         = new HashSet <int>();
            gettingZombiesNeededBC = new HashSet <string>();
            gettingCannotOpenBC    = new HashSet <string>();
        }
 public ZBDDisableCommand(ZBDPlugin plugin) => this.plugin = plugin;
示例#3
0
 public MiscEventHandler(ZBDPlugin plugin) => this.plugin = plugin;