Files
GhostEngine/Ghost.Entities/Common.cs
2025-12-16 15:05:42 +09:00

20 lines
241 B
C#

namespace Ghost.Entities;
public readonly struct TimeData
{
public int FrameCount
{
get; init;
}
public float DeltaTime
{
get; init;
}
public double ElapsedTime
{
get; init;
}
}