1
0
mirror of https://github.com/maxartz15/Validator.git synced 2024-09-19 12:35:39 +02:00
Validator/Runtime/IValidatable.cs
max 4b9b5a8c1d Base validator
SceneValidator & AssetValidator of objects that implement IValidatable.
2021-12-27 00:52:50 +01:00

9 lines
123 B
C#

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