public void ExecCommand(IFrameCommand cmd)
        {
            SignalPanel signalPanel = (Singleton <CBattleSystem> .GetInstance().FightForm != null) ? Singleton <CBattleSystem> .GetInstance().FightForm.GetSignalPanel() : null;

            if (signalPanel != null)
            {
                signalPanel.ExecCommand_SignalMiniMap_Position(cmd.playerID, this.m_signalID, ref this.m_worldPos, this.m_elementType);
            }
        }
Ejemplo n.º 2
0
        public void ExecCommand(IFrameCommand cmd)
        {
            SignalPanel panel = (Singleton <CBattleSystem> .GetInstance().FightForm == null) ? null : Singleton <CBattleSystem> .GetInstance().FightForm.GetSignalPanel();

            if (panel != null)
            {
                panel.ExecCommand_SignalMiniMap_Position(cmd.playerID, this.m_signalID, ref this.m_worldPos);
            }
        }