Files
H3VR-TNH-Quality-of-Life-Im…/Assets/MeatKit/Editor/BuildPipeline/IValidatable.cs
T
2022-01-22 20:13:49 -08:00

10 lines
159 B
C#

using System.Collections.Generic;
namespace MeatKit
{
public interface IValidatable
{
Dictionary<string, BuildMessage> Validate();
}
}