AK056/Assets/GameLogic/Game/Setting/EventSetting.cs
2025-05-09 15:40:34 +08:00

12 lines
472 B
C#

namespace GameLogic
{
public static class EventSetting
{
public static readonly string PlayStretchPickUpComplete = "PlayStretchPickUpComplete";
public static readonly string PlayStretchPutDownComplete = "PlayStretchPutDownComplete";
public static readonly string PlayShrinkPickUpComplete = "PlayShrinkPickUpComplete";
public static readonly string PlayShrinkPutDownComplete = "PlayShrinkPutDownComplete";
}
}