Syntriax.Engine/Engine.Core/GameTime.cs

10 lines
117 B
C#
Raw Normal View History

2024-01-22 23:23:32 +03:00
using System;
namespace Syntriax.Engine.Core;
public record GameTime
(
TimeSpan Total,
TimeSpan Elapsed
);