forked from hunterzonewu/unity-decompiled
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCursor.cs
More file actions
24 lines (22 loc) · 792 Bytes
/
Cursor.cs
File metadata and controls
24 lines (22 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Decompiled with JetBrains decompiler
// Type: UnityEngine.WSA.Cursor
// Assembly: UnityEngine, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: A8FF7A2C-E4EE-4232-AB17-3FCABEC16496
// Assembly location: C:\Users\Blake\sandbox\unity\test-project\Library\UnityAssemblies\UnityEngine.dll
using System.Runtime.CompilerServices;
namespace UnityEngine.WSA
{
/// <summary>
/// <para>Cursor API for Windows Store Apps.</para>
/// </summary>
public sealed class Cursor
{
/// <summary>
/// <para>Set a custom cursor.</para>
/// </summary>
/// <param name="id">The cursor resource id.</param>
[WrapperlessIcall]
[MethodImpl(MethodImplOptions.InternalCall)]
public static extern void SetCustomCursor(uint id);
}
}