UnitComponentE.cs 238 B

1234567891011121314
  1. using Base;
  2. using Model;
  3. namespace Hotfix
  4. {
  5. [EntityEvent(EntityEventId.UnitComponent)]
  6. public static class UnitComponentE
  7. {
  8. public static void Awake(this UnitComponent component)
  9. {
  10. Log.Debug("UnitComponent Awake");
  11. }
  12. }
  13. }