Eintoo/GameServer/Server/Entity/Model/Chat/ChatChannel/ChatChannelCenterComponent.cs
2025-04-22 15:31:25 +08:00

8 lines
173 B
C#

using Fantasy.Entitas;
public class ChatChannelCenterComponent : Entity
{
public Dictionary<long,ChatChannel> ChatChannels = new Dictionary<long, ChatChannel>();
}