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