Archived
Private
Public Access
1
0

Removed Subrepository

This commit is contained in:
2022-09-04 13:23:45 +02:00
parent f4a01d6a69
commit 2cdae71f61
109 changed files with 12072 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
namespace OpenGLTutorial.GameLoop {
public static class GameTime {
/// <summary>
/// The time in seconds that passed between frames
/// </summary>
public static float DeltaTime { get; set; }
/// <summary>
/// The total elapsed time sinse the game started
/// </summary>
public static float TotalElapsedSeconds { get; set; }
}
}