Files
Fishing2Server/Entity/Gate/Model/GameAccountFlagComponent.cs
2025-07-16 17:47:53 +08:00

13 lines
426 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using Fantasy.Entitas;
namespace Fantasy.Gate;
public sealed class GameAccountFlagComponent : Entity
{
public long AccountID;
// 有一种可能当在Account在其他地方被销毁
// 这时候因为这个Account是会回收到池子中所以这个引用还是有效的
// 那这时候就会出现这个引用的Account可能是其他用户的了。
public EntityReference<GameAccount> Account;
}