Server.Notoriety.GetHue C# (CSharp) Méthode

GetHue() public static méthode

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

			return m_Hues[noto];
		}

Usage Example

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