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

13 lines
323 B
C#

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>();
}
}