7 lines
105 B
C#
7 lines
105 B
C#
using System;
|
|
using UnityEngine.Events;
|
|
|
|
[Serializable]
|
|
public class BooleanEvent : UnityEvent<bool>
|
|
{
|
|
}
|