Core.cs 227 B

12345678910111213
  1. using GadgetCore;
  2. using GadgetCore.API;
  3. using System.Collections.Generic;
  4. namespace VendingMachine
  5. {
  6. internal static class Core
  7. {
  8. public static List<ItemInfo> infoList;
  9. public static GadgetLogger logger;
  10. }
  11. }