Asgard.ScriptSystem.Javascript.Modules.AsgardModule.getSystem C# (CSharp) Method

getSystem() public method

public getSystem ( string typeName ) : ISystem
typeName string
return ISystem
        public ISystem getSystem(string typeName)
        {
            var type = getTypeByName(typeName);
            if (type == null) return null;
            return _instance.LookupSystem(type);
        }