eco2d/code/foundation/src/systems/systems.h

9 lines
166 B
C
Raw Normal View History

2021-11-01 18:20:07 +00:00
#pragma once
2022-09-29 14:16:06 +00:00
#include "flecs.h"
2021-11-01 18:20:07 +00:00
static inline float safe_dt(ecs_iter_t *it) {
return zpl_min(it->delta_time, 0.03334f);
}
void SystemsImport(ecs_world_t *ecs);