XNA extending an existing Content type
- by Maarten
We are doing a game in XNA that reacts to music. We need to do some offline processing of the music data and therefore we need a custom type containing the Song and some additional data:
// Project AudioGameLibrary
namespace AudioGameLibrary
{
public class GameTrack
{
public Song Song;
public string Extra;
}
}
We've…