Пример #1
0
        public SystemInputModule CreateModuleSystem()
        {
            if (this.systemModule == null)
            {
                this.systemModule = new SystemInputModule();
            }

            return(this.systemModule);
        }
Пример #2
0
        public void DeleteModuleSystem()
        {
            if (this.systemModule == null)
            {
                return;
            }

            this.systemModule.Delete();
            this.systemModule = null;
        }