17 lines
263 B
C#
17 lines
263 B
C#
using System;
|
|
|
|
namespace UltimateWater
|
|
{
|
|
public class OverlayRendererOrderAttribute : Attribute
|
|
{
|
|
private readonly int _Priority;
|
|
|
|
public int Priority => _Priority;
|
|
|
|
public OverlayRendererOrderAttribute(int priority)
|
|
{
|
|
_Priority = priority;
|
|
}
|
|
}
|
|
}
|