Aura.Channel.Skills.Music.PlayingInstrument.GetRandomScore C# (CSharp) Method

GetRandomScore() protected method

Returns random score scroll id.
protected GetRandomScore ( Random rnd ) : int
rnd System.Random
return int
		protected virtual int GetRandomScore(Random rnd)
		{
			return rnd.Next(RandomScoreMin, RandomScoreMax + 1);
		}