RobotComponent.cs 218 B

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