Ejemplo n.º 1
0
    protected void SendOpponentLifeUpdate()
    {
        int casterID   = m_caster.m_ID;
        int opponentID = (casterID + 1) % 2;

        CGPlayerLogic opponent = m_cgManager.m_players[opponentID];

        opponent.SendLifeCommand();
    }
Ejemplo n.º 2
0
 protected void SendSelfLifeUpdate()
 {
     m_caster.SendLifeCommand();
 }