aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.RemoteDesktop/Network/RemoteDesktopPacket.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.RemoteDesktop/Network/RemoteDesktopPacket.cs')
-rw-r--r--Software/Visual_Studio/Tango.RemoteDesktop/Network/RemoteDesktopPacket.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.RemoteDesktop/Network/RemoteDesktopPacket.cs b/Software/Visual_Studio/Tango.RemoteDesktop/Network/RemoteDesktopPacket.cs
index 28f890a9a..f0186e94f 100644
--- a/Software/Visual_Studio/Tango.RemoteDesktop/Network/RemoteDesktopPacket.cs
+++ b/Software/Visual_Studio/Tango.RemoteDesktop/Network/RemoteDesktopPacket.cs
@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
+using System.Windows;
namespace Tango.RemoteDesktop.Network
{
@@ -22,5 +23,15 @@ namespace Tango.RemoteDesktop.Network
/// Gets or sets the region on the previous bitmap that needs to be applied with this packet bitmap.
/// </summary>
public CaptureRegion PartialRegion { get; set; }
+
+ /// <summary>
+ /// Gets or sets the mouse position.
+ /// </summary>
+ public Point MousePosition { get; set; }
+
+ /// <summary>
+ /// Gets or sets a value indicating whether the frame includes the remote cursor.
+ /// </summary>
+ public bool CursorVisible { get; set; }
}
}