public void Copy(ToPlayer src) { reactionType = src.reactionType; reactionLoopTime = src.reactionLoopTime; reactionBlowForce = src.reactionBlowForce; reactionBlowAngle = src.reactionBlowAngle; isBuffCancellation = src.isBuffCancellation; }
public override string ToString() { string temp = string.Empty; if (FromPlayer != null) { temp = "From: " + FromPlayer.ToString() + "\n"; } if (ToPlayer != null) { temp += "To: " + ToPlayer.ToString() + "\n"; } else { temp += "To: (none)\n"; } temp += MessageBody + "\n"; return(temp); }