RJW-Sexperience/Source/RJWSexperience/Settings/ITab.cs

10 lines
148 B
C#
Raw Normal View History

2022-05-06 14:30:26 +00:00
using UnityEngine;
namespace RJWSexperience.Settings
{
public interface ITab
{
string Label { get; }
void DoTabContents(Rect inRect);
}
}