using System; using Newtonsoft.Json; using SBRL.Utilities; using SBRL.Utilities.JsonConverters; namespace Nibriboard.Client.Messages { public class HandshakeRequestMessage : Message { /// /// The initial visible area on the client's screen. /// Very useful for determining which chunks we should send a client when they first connect. /// public Rectangle InitialViewport = Rectangle.Zero; /// /// The initial position of the user's cursor. /// public Vector2 InitialAbsCursorPosition = Vector2.Zero; public HandshakeRequestMessage() { } } }