UnitComponentE.cs 226 B

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