forked from BilalY/Rasagar
20 lines
361 B
C#
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();
|
|
}
|
|
}
|