| 12345678910111213141516171819 |
- using GadgetCore;
- using GadgetCore.API;
- using System.Collections.Generic;
- namespace MoreVanityItems
- {
- internal static class Core
- {
- public static GadgetLogger logger;
- public static ItemInfo itemGift;
- public static ItemInfo itemShield;
- public static ItemInfo itemHelmet;
- public static ItemInfo itemArmor;
- public static List<ItemInfo> gifts = new List<ItemInfo>();
- }
- }
|