Rasagar/Library/PackageCache/com.unity.visualeffectgraph/Editor/GraphView/Elements/VFXElement.cs
2024-08-26 23:07:20 +03: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();
}
}