12 lines
175 B
C#
12 lines
175 B
C#
using System;
|
|
using UnityEngine;
|
|
using UnityEngine.Events;
|
|
|
|
namespace UIWidgets
|
|
{
|
|
[Serializable]
|
|
public class ListViewGameObjectsEvent : UnityEvent<int, GameObject>
|
|
{
|
|
}
|
|
}
|