This commit is contained in:
2025-07-27 12:34:04 +08:00
parent 6311c7cb12
commit 743c1d2baa
194 changed files with 81685 additions and 696 deletions

View File

@@ -0,0 +1,7 @@
using Fantasy.Entitas;
namespace Fantasy;
public class ChatComponent : Entity
{
}

19
Entity/Chat/ChatUnit.cs Normal file
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();
}
}