Server.Notoriety.GetHue C# (CSharp) 메소드

GetHue() 공개 정적인 메소드

public static GetHue ( int noto ) : int
noto int
리턴 int
		public static int GetHue( int noto )
		{
			if ( noto < 0 || noto >= m_Hues.Length )
				return 0;

			return m_Hues[noto];
		}

Usage Example

예제 #1
0
 public static int GetHue(this NotorietyType noto)
 {
     return(Notoriety.GetHue((int)noto));
 }