Danmaku_no_Kyojin.BulletEngine.BulletPattern.StringToPatternType C# (CSharp) Method

StringToPatternType() private static method

convert a string to a pattern type enum
private static StringToPatternType ( string str ) : EPatternType
str string String.
return EPatternType
        private static EPatternType StringToPatternType(string str)
        {
            return (EPatternType)Enum.Parse(typeof(EPatternType), str);
        }