9 lines
226 B
C#
9 lines
226 B
C#
namespace XCEngine
|
|
{
|
|
public static class Time
|
|
{
|
|
public static float deltaTime => InternalCalls.Time_GetDeltaTime();
|
|
public static float fixedDeltaTime => InternalCalls.Time_GetFixedDeltaTime();
|
|
}
|
|
}
|