mirror of
https://github.com/sbrl/Nibriboard.git
synced 2018-01-10 21:33:49 +00:00
22 lines
369 B
C#
22 lines
369 B
C#
using System;
|
|
|
|
using SBRL.Utilities;
|
|
|
|
namespace Nibriboard.Client.Messages
|
|
{
|
|
/// <summary>
|
|
/// Represents an update by the client of their cursor position.
|
|
/// </summary>
|
|
public class CursorPositionMessage
|
|
{
|
|
/// <summary>
|
|
/// The absolute cursor position.
|
|
/// </summary>
|
|
public Vector2 AbsCursorPosition;
|
|
|
|
public CursorPositionMessage()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|