2021-09-09 20:42:29 -04:00

20 lines
361 B
C#

using System.Collections.Generic;
using UnityEditor.Experimental.GraphView;
using UnityEngine;
using UnityEngine.UIElements;
using System.Reflection;
using System.Linq;
namespace UnityEditor.VFX.UI
{
interface IVFXMovable
{
void OnMoved();
}
interface IVFXResizable
{
void OnStartResize();
void OnResized();
}
}