11 lines
140 B
C#
11 lines
140 B
C#
using System;
|
|
using UnityEngine.Events;
|
|
|
|
namespace UIWidgets
|
|
{
|
|
[Serializable]
|
|
public class ResizableEvent : UnityEvent<Resizable>
|
|
{
|
|
}
|
|
}
|