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

FormatDamage() private static méthode

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

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