Falco Engine 3.9.0.1 (beta)
Cursor.cs
Go to the documentation of this file.
1using System;
2using System.Runtime.CompilerServices;
3using System.Runtime.InteropServices;
4
5namespace FalcoEngine
6{
7 public static class Cursor
8 {
12 public static bool visible { [MethodImpl(MethodImplOptions.InternalCall)] get; [MethodImpl(MethodImplOptions.InternalCall)] set; }
13
17 public static bool locked { [MethodImpl(MethodImplOptions.InternalCall)] get; [MethodImpl(MethodImplOptions.InternalCall)] set; }
18 }
19}
static bool locked
Get or set a lock state of the mouse cursor
Definition: Cursor.cs:17
static bool visible
Get or set a visibility of the mouse cursor
Definition: Cursor.cs:12