BlottoBeats.Library.SongData.Song.Song C# (CSharp) Method

Song() public method

public Song ( int temp, string ky, string gen ) : System
temp int
ky string
gen string
return System
        public Song(int temp, string ky, string gen)
        {
            tempo = temp;
            key = ky;
            genre = gen;
            songData = new List<SongSegment>();
        }