mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-17 00:44:49 +01:00
16 lines
340 B
C#
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;
|
|
}
|
|
}
|