10 lines
No EOL
225 B
C#
10 lines
No EOL
225 B
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Module.ProjectValidator
|
|
{
|
|
public interface IGameObjectValidator
|
|
{
|
|
void Validate(GameObject gameObject, List<ValidatorResult> results);
|
|
}
|
|
} |