This repository has been archived on 2021-03-06. You can view files and clone it, but cannot push or open issues or pull requests.
aurora-cradle-sharp/AuroraSignal/Src/Cursor/CursorObject.cs
Brandon Watson b61ffde4c9 WIP
2021-03-05 11:56:51 -05:00

10 lines
142 B
C#

using System.Collections.Generic;
namespace Aurora.Cursor
{
public interface ICursorObject
{
string Id { get; set; }
}
}