RobotComponent.cs 237 B

123456789101112131415161718
  1. using Model;
  2. namespace Hotfix
  3. {
  4. [ObjectEvent((int)EntityEventId.RobotComponent)]
  5. public class RobotComponent: Component
  6. {
  7. public override void Dispose()
  8. {
  9. if (this.Id == 0)
  10. {
  11. return;
  12. }
  13. base.Dispose();
  14. }
  15. }
  16. }