BnS_ACT_Plugin.Test.TestACTWrapper.CombatAction.CombatAction C# (CSharp) Method

CombatAction() public method

public CombatAction ( int SwingType, bool Critical, string Special, string Attacker, string theAttackType, Dnum Damage, System.DateTime Time, int TimeSorter, string Victim, string theDamageType ) : System
SwingType int
Critical bool
Special string
Attacker string
theAttackType string
Damage Dnum
Time System.DateTime
TimeSorter int
Victim string
theDamageType string
return System
            public CombatAction(int SwingType, bool Critical, string Special, string Attacker, string theAttackType, Dnum Damage, DateTime Time, int TimeSorter, string Victim, string theDamageType)
            {
                this.SwingType = SwingType;
                this.Critical = Critical;
                this.Special = Special;
                this.Attacker = Attacker;
                this.theAttackType = theAttackType;
                this.Damage = Damage;
                this.Time = Time;
                this.TimeSorter = TimeSorter;
                this.Victim = Victim;
                this.theDamageType = theDamageType;
            }
TestACTWrapper.CombatAction