31 lines
493 B
C#
31 lines
493 B
C#
using System.Threading;
|
|
|
|
namespace Cute;
|
|
|
|
public class Toolbox
|
|
{
|
|
private enum SYSTEM_INIT
|
|
{
|
|
}
|
|
|
|
public static BootSystem BootSystem;
|
|
|
|
public static NetworkManager NetworkManager;
|
|
|
|
public static AssetManager AssetManager;
|
|
|
|
public static SavedataManager SavedataManager;
|
|
|
|
public static DeviceManager DeviceManager;
|
|
|
|
public static QualityManager QualityManager;
|
|
|
|
public static ResourcesManager ResourcesManager;
|
|
|
|
|
|
|
|
public static DebugManager DebugManager;
|
|
|
|
public static Mutex mute;
|
|
}
|