summaryrefslogtreecommitdiff
path: root/ecs.c
blob: 15a44f1c7940fe52fd5c991933b32b7cd879af1b (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "ecs.h"

void ecs_init(EcsContext *ctx)
{
	(void)ctx;
}

void ecs_deinit(EcsContext *ctx)
{
	(void)ctx;
}