summaryrefslogtreecommitdiff
path: root/src/entitytag.h
blob: dcbad2d521240fed02f77dd700d6d69b8a9064f9 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once
#include "entity.h"

typedef struct {
	const char *name;
	Entity *(*init)(Entity *this, int x, int y);
} EntityTag;

extern unsigned int num_entitytags;
extern EntityTag entitytags[256];