Example #1
0
 public BKMusicMap(int mapID_, int trackID_, int secondaryTrackID_)
 {
     this.trackID            = trackID_;
     this.secondaryTrackID   = secondaryTrackID_;
     this.mapID              = mapID_;
     this.trackName          = BKTrack.setTrackName(this.trackID);
     this.secondaryTrackName = BKTrack.setTrackName(this.secondaryTrackID);
 }
Example #2
0
 public BKTrack(int trackID_)
 {
     this.trackID   = trackID_;
     this.trackName = BKTrack.setTrackName(this.trackID);
 }