public SystemInputModule CreateModuleSystem() { if (this.systemModule == null) { this.systemModule = new SystemInputModule(); } return(this.systemModule); }
public void DeleteModuleSystem() { if (this.systemModule == null) { return; } this.systemModule.Delete(); this.systemModule = null; }