10 lines
No EOL
240 B
C#
10 lines
No EOL
240 B
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Module.ProjectValidator
|
|
{
|
|
public interface IComponentValidator<in T> where T : Component
|
|
{
|
|
void Validate(T component, List<ValidatorResult> results);
|
|
}
|
|
} |