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); }
public BKTrack(int trackID_) { this.trackID = trackID_; this.trackName = BKTrack.setTrackName(this.trackID); }