WutheringWaves/GameServer/Systems/Entity/Component/EntityComponentBase.cs

9 lines
219 B
C#
Raw Normal View History

2024-02-10 16:04:03 +00:00
using Protocol;
namespace GameServer.Systems.Entity.Component;
internal abstract class EntityComponentBase
{
public abstract EntityComponentType Type { get; }
public abstract EntityComponentPb Pb { get; }
}