ABM_creator.Globals.getIconId C# (CSharp) 메소드

getIconId() 정적인 공개 메소드

static public getIconId ( string iconName ) : int
iconName string
리턴 int
        static public int getIconId(string iconName)
        {
            try
            {
                return Globals.iconHash[iconName];
            }
            catch
            {
                DebugWindow.PrintDebugMessage("Cannot find '" + iconName + "' in nwn2_icons.2da.");
                return 0;
            }
        }
    }