예제 #1
0
파일: KPUCore.cs 프로젝트: ec429/kpu_mod
        public void Start()
        {
            if (Instance != null)
            {
                Destroy(this);
                return;
            }

            Instance = this;

            libraryWindow = null;

            ctrlLockAddon = new AddOns.ControlLockAddon();

            Logging.Log("KPUCore loaded successfully.");
        }
예제 #2
0
파일: KPUCore.cs 프로젝트: rogersk/kpu_mod
        public void Start()
        {
            if (Instance != null)
            {
                Destroy(this);
                return;
            }

            Instance = this;

            library       = new KPU.Library.Library();
            libraryWindow = null;

            ctrlLockAddon = new AddOns.ControlLockAddon();

            Logging.Log("KPUCore loaded successfully.");
        }