unity-atoms/Packages/Core/Runtime/Interfaces/IIsValid.cs
2020-03-21 22:45:39 +01:00

11 lines
176 B
C#

namespace UnityAtoms
{
/// <summary>
/// Interface defining an `IsValid` method.
/// </summary>
public interface IIsValid
{
bool IsValid();
}
}