using System; using System.Collections.Generic; using SBRL.Utilities; namespace Nibriboard.Client.Messages { /// /// The reflection of a that's sent to everyone else on the same plane. /// Contains a list of point the client has added to the line they're drawing. /// public class LinePartReflectionMessage : Message { /// /// The id of the client drawing the line. /// public int OtherClientId; /// /// The id of the line to add the points to. /// public string LineId; /// /// The points to add to the line /// public List Points; public LinePartReflectionMessage() { } } }