Ejemplo n.º 1
0
 public void Copy(ToPlayer src)
 {
     reactionType       = src.reactionType;
     reactionLoopTime   = src.reactionLoopTime;
     reactionBlowForce  = src.reactionBlowForce;
     reactionBlowAngle  = src.reactionBlowAngle;
     isBuffCancellation = src.isBuffCancellation;
 }
Ejemplo n.º 2
0
        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);
        }