Eintoo/GameServer/Server/Entity/Model/Gate/GameAccount/GameAccountFlagComponent.cs
2025-04-22 15:31:25 +08:00

11 lines
221 B
C#

using Fantasy;
using Fantasy.Entitas;
namespace Hotfix;
public class GameAccountFlagComponent : Entity
{
public long AccountId;
public long AccountRuntimeId;
public EntityReference<GameAccount> Account;
}