RJW-Sexperience/Source/RJWSexperience/Settings/ITab.cs
2022-09-08 19:59:25 +05:00

10 lines
No EOL
148 B
C#

using UnityEngine;
namespace RJWSexperience.Settings
{
public interface ITab
{
string Label { get; }
void DoTabContents(Rect inRect);
}
}