canto/Assets/Scripts/SOAP/Event/StringEvent.cs
2025-08-14 19:11:32 -04:00

8 lines
228 B
C#

using KitsuneCafe.Sys;
using UnityEngine;
namespace KitsuneCafe.SOAP
{
[CreateAssetMenu(fileName = "StringEvent", menuName = KitsuneCafeMenu.SoapEvent + "String")]
public class StringEvent : ReactiveEvent<string> { }
}