Server.SkillHandlers.AnimalLoreGump.FormatAttributes C# (CSharp) Méthode

FormatAttributes() private static méthode

private static FormatAttributes ( int cur, int max ) : string
cur int
max int
Résultat string
		private static string FormatAttributes( int cur, int max )
		{
			if ( max == 0 )
				return "<div align=right>---</div>";

			return String.Format( "<div align=right>{0}/{1}</div>", cur, max );
		}