Core.cs 403 B

12345678910111213141516171819
  1. using GadgetCore;
  2. using GadgetCore.API;
  3. using System.Collections.Generic;
  4. namespace MoreVanityItems
  5. {
  6. internal static class Core
  7. {
  8. public static GadgetLogger logger;
  9. public static ItemInfo itemGift;
  10. public static ItemInfo itemShield;
  11. public static ItemInfo itemHelmet;
  12. public static ItemInfo itemArmor;
  13. public static List<ItemInfo> gifts = new List<ItemInfo>();
  14. }
  15. }