Example #1
0
    public override void Stop()
    {
        base.Stop();
        CommandWound c = Cmd as CommandWound;

        if (c.StopCallback != null)
        {
            c.StopCallback();
            c.StopCallback = null;
        }
    }
Example #2
0
    public override void Exit()
    {
        base.Exit();
        CommandWound c = Cmd as CommandWound;

        if (c.ExitCallback != null)
        {
            c.ExitCallback();
            c.ExitCallback = null;
        }
    }