18 lines
337 B
C#
18 lines
337 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using OpenRa.Game.GameRules;
|
|
|
|
namespace OpenRa.Game.Traits
|
|
{
|
|
class AttackInfo
|
|
{
|
|
public Actor Attacker;
|
|
public WarheadInfo Warhead;
|
|
public int Damage;
|
|
public DamageState DamageState;
|
|
public bool DamageStateChanged;
|
|
}
|
|
}
|