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