style: Renamed GameTime to EngineTime

This commit is contained in:
2024-01-23 12:04:32 +03:00
parent 485dfcc51e
commit 0ce6f8ab23
2 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
using System;
namespace Syntriax.Engine.Core;
public record EngineTime
(
TimeSpan Total,
TimeSpan Elapsed
);