Pokemon3D.Scripting.ScriptContext.GetPrototype C# (CSharp) 메소드

GetPrototype() 개인적인 메소드

private GetPrototype ( string identifier ) : Prototype
identifier string
리턴 Pokemon3D.Scripting.Types.Prototypes.Prototype
        internal Prototype GetPrototype(string identifier)
        {
            if (_prototypes.ContainsKey(identifier))
            {
                return _prototypes[identifier];
            }
            else
            {
                return Parent?.GetPrototype(identifier);
            }
        }