10 lines
149 B
C#
10 lines
149 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace RoR2;
|
||
|
|
||
|
[CreateAssetMenu(menuName = "RoR2/UI Layer")]
|
||
|
public class UILayer : ScriptableObject
|
||
|
{
|
||
|
public int priority;
|
||
|
}
|