mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
11 lines
258 B
C#
11 lines
258 B
C#
using Microsoft.Xna.Framework;
|
|
using MonoGame.Extended.TextureAtlases;
|
|
|
|
namespace MonoGame.Extended.Gui
|
|
{
|
|
public class Cursor
|
|
{
|
|
public TextureRegion2D TextureRegion { get; set; }
|
|
public Color Color { get; set; } = Color.White;
|
|
}
|
|
} |