Files
BH3/Assets/Scripts/Assembly-CSharp/MoleMole/Config/ConfigSharedAnimEventGroup.cs
2025-08-13 09:26:42 +08:00

16 lines
340 B
C#

using System.Collections.Generic;
using FullSerializer;
namespace MoleMole.Config
{
[fsObject(Converter = typeof(ConfigSharedAnimEventGroupConverter))]
public class ConfigSharedAnimEventGroup
{
public string Prefix;
public string Type = "ConfigEntityAnimEvent";
public Dictionary<string, ConfigEntityAnimEvent> AnimEvents;
}
}