mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-03-31 14:55:07 -05:00
11 lines
302 B
C#
11 lines
302 B
C#
namespace UniGLTF.EditorSettingsValidator
|
|
{
|
|
public interface IUnitySettingsValidator
|
|
{
|
|
bool IsValid { get; }
|
|
string HeaderDescription { get; }
|
|
string CurrentValueDescription { get; }
|
|
string RecommendedValueDescription { get; }
|
|
void Validate();
|
|
}
|
|
} |