14 lines
293 B
C#
14 lines
293 B
C#
using Fantasy.Entitas.Interface;
|
|
|
|
namespace Fantasy;
|
|
|
|
public class MailUnitDestroySystem: DestroySystem<MailUnit>
|
|
{
|
|
protected override void Destroy(MailUnit self)
|
|
{
|
|
self.Name = null;
|
|
self.AccountId = 0;
|
|
self.CreateTime = 0;
|
|
self.GateRouteId = 0;
|
|
}
|
|
} |