aboutsummaryrefslogtreecommitdiff
path: root/inc/entity.h
blob: fb700677ec1170cc6e4eb840369b5b9f18bd8a33 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

struct Entity {
	bool active;
	bool persist;
	Vtable *table;
	struct Game *g;
	unsigned long uuid;
	char name[256];
	unsigned int tile;
};