Beispiel #1
0
 public void ClearSongs()
 {
     CGame.ClearSongs();
 }
Beispiel #2
0
 public int GetNumSongs()
 {
     return(CGame.GetNumSongs());
 }
Beispiel #3
0
 public void AddSong(int songID, EGameMode gameMode)
 {
     CGame.AddSong(songID, gameMode);
 }
Beispiel #4
0
 public void Reset()
 {
     CGame.Reset();
 }
Beispiel #5
0
 public float GetBeatFromTime(float time, float bpm, float gap)
 {
     return(CGame.GetBeatFromTime(time, bpm, gap));
 }
Beispiel #6
0
 public float GetTimeFromBeats(float beat, float bpm)
 {
     return(CGame.GetTimeFromBeats(beat, bpm));
 }
Beispiel #7
0
 public CPoints GetPoints()
 {
     return(CGame.GetPoints());
 }
Beispiel #8
0
 public CSong GetSong(int round)
 {
     return(CGame.GetSong(round));
 }
Beispiel #9
0
 public CSong GetSong()
 {
     return(CGame.GetSong());
 }