CTT/Server/Model/Game/Entity/Skill/Component/SkillOptionFactoryComponent.cs

13 lines
323 B
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
using Cal;
using System;
using System.Collections.Generic;
namespace ET
{
public class SkillOptionFactoryComponent:Entity
{
public static SkillOptionFactoryComponent inatnce;
public readonly Dictionary<SkillOptionType, Type> allBuffSystemTypes = new Dictionary<SkillOptionType, Type>();
}
}