summaryrefslogtreecommitdiff
path: root/ecs.h
blob: 9698945ed864f935921153fcdfd78da820fd82a2 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

typedef struct EcsContext EcsContext;

struct EcsContext {
	int _;
};

void ecs_init(EcsContext *ctx);
void ecs_deinit(EcsContext *ctx);