1
0
mirror of https://github.com/maxartz15/Validator.git synced 2024-09-19 12:35:39 +02:00
Validator/Runtime/IValidatable.cs

9 lines
123 B
C#
Raw Permalink Normal View History

namespace Validator
{
public interface IValidatable
{
#if UNITY_EDITOR
public void Validate(Report report);
#endif
}
}