WutheringWaves/GameServer/Systems/Entity/Component/EntityComponentBase.cs
2024-02-10 19:04:03 +03:00

8 lines
219 B
C#

using Protocol;
namespace GameServer.Systems.Entity.Component;
internal abstract class EntityComponentBase
{
public abstract EntityComponentType Type { get; }
public abstract EntityComponentPb Pb { get; }
}