Added Playback to EntityCommandBuffer Added JobSchedular to world Added ISystem and SystemGroup Updated packages
20 lines
237 B
C#
20 lines
237 B
C#
namespace Ghost.Entities;
|
|
|
|
public readonly struct Time
|
|
{
|
|
public int FrameCount
|
|
{
|
|
get; init;
|
|
}
|
|
|
|
public float DeltaTime
|
|
{
|
|
get; init;
|
|
}
|
|
|
|
public double ElapsedTime
|
|
{
|
|
get; init;
|
|
}
|
|
}
|