forked from BilalY/Rasagar
11 lines
179 B
C#
11 lines
179 B
C#
using UnityEditor.AnimatedValues;
|
|
using UnityEngine.Events;
|
|
|
|
namespace UnityEditor.Rendering.HighDefinition
|
|
{
|
|
interface IUpdateable<T>
|
|
{
|
|
void Update(T v);
|
|
}
|
|
}
|