Core.cs 348 B

12345678910111213141516
  1. using GadgetCore;
  2. namespace MoreLights
  3. {
  4. internal static class Core
  5. {
  6. public static int itemGreenLampId = -1;
  7. public static int itemYellowLampId = -1;
  8. public static int itemPurpleLampId = -1;
  9. public static int itemOrangeLampId = -1;
  10. public static int itemWhiteLampId = -1;
  11. public static GadgetLogger logger;
  12. }
  13. }