OldBlueWater/BlueWater/Assets/Doozy/Runtime/Reactor/MetaProgressTarget.cs
2023-08-02 15:08:03 +09:00

10 lines
215 B
C#

using UnityEngine;
namespace Doozy.Runtime.Reactor
{
public abstract class MetaProgressTarget<T> : ProgressTarget
{
[SerializeField] protected T Target;
public T target => Target;
}
}