Core.cs 285 B

12345678910111213141516
  1. using GadgetCore;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using UnityEngine;
  7. namespace ItemLevelExtension
  8. {
  9. internal static class Core
  10. {
  11. public static GadgetLogger logger;
  12. public static int settingMaxItemLevel = 12;
  13. }
  14. }