Files
Fishing2Server/Entity/Model/SubScene/GateSubSceneFlagComponent.cs
2025-06-30 10:51:37 +08:00

14 lines
236 B
C#

using Fantasy.Entitas;
namespace Fantasy;
public sealed class GateSubSceneFlagComponent : Entity
{
public long SubSceneRouteId;
public override void Dispose()
{
SubSceneRouteId = 0;
base.Dispose();
}
}