unity-atoms/Packages/Core/Runtime/Interfaces/IGetValue.cs
Adam Ramberg c3bc59259f More WIP
2020-03-02 02:26:06 +01:00

7 lines
92 B
C#

namespace UnityAtoms
{
public interface IGetValue<T>
{
T GetValue();
}
}