namespace OpenGLTutorial.GameLoop {
public static class GameTime {
///
/// The time in seconds that passed between frames
///
public static float DeltaTime { get; set; }
///
/// The total elapsed time sinse the game started
///
public static float TotalElapsedSeconds { get; set; }
}
}