19 lines
276 B
C#
19 lines
276 B
C#
using Fantasy.Entitas;
|
|
|
|
namespace Fantasy;
|
|
|
|
public sealed class ChatUnit : Entity
|
|
{
|
|
public long GateRouteId;
|
|
|
|
public override void Dispose()
|
|
{
|
|
if (IsDisposed)
|
|
{
|
|
return;
|
|
}
|
|
|
|
GateRouteId = 0;
|
|
base.Dispose();
|
|
}
|
|
} |