13 lines
290 B
C#
13 lines
290 B
C#
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; }
|
|
}
|