mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-01-08 06:18:32 -05:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
21 lines
345 B
C#
21 lines
345 B
C#
namespace Sandbox;
|
|
|
|
[Expose]
|
|
public class CursorSettings : ConfigData
|
|
{
|
|
[Expose]
|
|
public struct Cursor
|
|
{
|
|
[KeyProperty, ResourceType( "jpg" )]
|
|
public string Image { get; set; }
|
|
|
|
[KeyProperty]
|
|
public Vector2 Hotspot { get; set; }
|
|
}
|
|
|
|
[Hide]
|
|
public override int Version => 2;
|
|
|
|
public Dictionary<string, Cursor> Cursors { get; set; }
|
|
}
|