3#ifndef TRAM_SDK_FRAMEWORK_CORE_H
4#define TRAM_SDK_FRAMEWORK_CORE_H
void Init()
Initializes the core of the framework.
Definition: core.cpp:42
void Update()
Updates the core system.
Definition: core.cpp:57
uint32_t id_t
Definition: core.h:10
double GetTickTime()
Same as GetFrameTime()
Definition: core.cpp:109
const char * GetVersion()
Returns the version identifier of the runtime.
Definition: core.cpp:129
uint32_t GetTick()
Returns the current tick.
Definition: core.cpp:90
uint32_t GetFrame()
Returns the current frame.
Definition: core.cpp:96
uint32_t GetDeltaTick()
Returns the tick delta.
Definition: core.cpp:103
id_t GenerateID()
Generates a unique ID number.
Definition: core.cpp:35
double GetFrameTime()
Returns the time at the start of the current frame.
Definition: core.cpp:116
float GetDeltaTime()
Returns the time passed between frames.
Definition: core.cpp:124