I'm trying to make a simple Zune "game" (it's really an app, but my Zune only supports games) that takes in two integers, which are time intervals, and plays one sound after time1 and plays another sound after time1+time2, and then repeats.I'm using Visual C# 2008 Express with XNA 3.1.
All I really need is two components/containers that allow for specification of time, and one for "play". The purpose of this is for interval training, where one sprints for a certain duration and then rests for another duration, usually 30 seconds of sprinting followed by 90 seconds of resting.
In short, how do make a component that allows for the input of an integer in Visual C#?