18 lines
403 B
C#
18 lines
403 B
C#
using UnityEngine;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Fluxy
|
|
{
|
|
public interface IFluxyTargetProvider
|
|
{
|
|
List<FluxyTarget> GetTargets();
|
|
}
|
|
|
|
[DisallowMultipleComponent]
|
|
[RequireComponent(typeof(FluxyContainer))]
|
|
public abstract class FluxyTargetProvider : MonoBehaviour, IFluxyTargetProvider
|
|
{
|
|
public abstract List<FluxyTarget> GetTargets();
|
|
}
|
|
}
|