11 lines
225 B
C#

using System.Collections.Generic;
namespace ET.Client
{
[ComponentOf(typeof(Scene))]
public class GachaComponent : Entity, IAwake, IDestroy
{
public Dictionary<int, GachaPoolStats> Stats = new();
}
}