| 123456789101112131415161718192021 |
- using GadgetCore;
- using GadgetCore.API;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using UnityEngine;
- namespace AncientReassembler
- {
- internal static class Core
- {
- public static int itemAncientReassemblerId = -1;
- public static int npcID = -1;
- public static MenuInfo menu = null;
- public static ItemStore itemStore = new ItemStore(3);
- public static GadgetLogger logger;
- }
- }
|