コード例 #1
0
ファイル: Targeting.cs プロジェクト: jaedan/OrionUO
 private static void AttackLastTarg()
 {
     if (m_LastTarget != null && m_LastTarget.Serial.IsMobile)
     {
         ClientCommunication.Attack(m_LastCombatant.Value);
     }
 }
コード例 #2
0
ファイル: Targeting.cs プロジェクト: jaedan/OrionUO
 private static void AttackLastComb()
 {
     if (m_LastCombatant.IsMobile)
     {
         ClientCommunication.Attack(m_LastCombatant.Value);
     }
 }