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