AERMRE 1.5.1
AER modding framework for Hyper Light Drifter.
core.h
Go to the documentation of this file.
1
22#ifndef AER_CORE_H
23#define AER_CORE_H
24
25#include <stdbool.h>
26#include <stdint.h>
27
28/* ----- PUBLIC FUNCTIONS ----- */
29
40uint32_t AERGetNumSteps(void);
41
53double AERGetDeltaTime(void);
54
67bool AERGetPaused(void);
68
69#endif /* AER_CORE_H */
bool AERGetPaused(void)
Query the pause state of the game.
double AERGetDeltaTime(void)
Query the runtime of the previous step in seconds.
uint32_t AERGetNumSteps(void)
Query the number of steps (ticks) elapsed since the start of the game.