2026-03-27 13:07:39 +08:00
|
|
|
namespace XCEngine
|
|
|
|
|
{
|
|
|
|
|
public static class Time
|
|
|
|
|
{
|
|
|
|
|
public static float deltaTime => InternalCalls.Time_GetDeltaTime();
|
2026-04-03 13:22:30 +08:00
|
|
|
public static float fixedDeltaTime => InternalCalls.Time_GetFixedDeltaTime();
|
2026-03-27 13:07:39 +08:00
|
|
|
}
|
|
|
|
|
}
|