饭太稀

This commit is contained in:
bob
2025-06-30 10:51:37 +08:00
commit 8e45469c83
753 changed files with 87652 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
using Fantasy.Entitas;
namespace Fantasy;
public sealed class Unit : Entity
{
}

View File

@@ -0,0 +1,19 @@
using Fantasy.Entitas;
namespace Fantasy;
public sealed class ChatUnit : Entity
{
public long GateRouteId;
public override void Dispose()
{
if (IsDisposed)
{
return;
}
GateRouteId = 0;
base.Dispose();
}
}

View File

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