BlottoBeatsLibrary.SongParameters.SongParameters C# (CSharp) Метод

SongParameters() публичный Метод

Constructs a SongParameters object with the given data
public SongParameters ( int ID, int score, int seed, int tempo, string genre ) : System
ID int ID of the song
score int Score of the song
seed int Seed of the song
tempo int Tempo of the song
genre string Genre of the song
Результат System
        public SongParameters(int ID, int score, int seed, int tempo, string genre)
        {
            this.ID = ID;
            this.score = score;
            this.seed = seed;
            this.tempo = tempo;
            this.genre = genre;
        }

Same methods

SongParameters::SongParameters ( int seed, int tempo, string genre ) : System
SongParameters