| 1234567891011121314151617 |
- using GadgetCore;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using UnityEngine;
- namespace ShipDecorations
- {
- internal static class Core
- {
- public static List<int> itemStoreList = new List<int>();
- public static Dictionary<int, int> itemStorePriceList = new Dictionary<int, int>();
- public static GadgetLogger logger;
- }
- }
|