Init
This commit is contained in:
12
Prefab.Base/ISortOrder.cs
Normal file
12
Prefab.Base/ISortOrder.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Prefab.Base;
|
||||
|
||||
/// <summary>
|
||||
/// Defines a contract for entities that expose an explicit sort position.
|
||||
/// </summary>
|
||||
public interface ISortOrder
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the relative sort order for the entity.
|
||||
/// </summary>
|
||||
int SortOrder { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user