summary refs log tree commit diff
path: root/src/funsinit.c
blob: 264a653e81850c40194fe1177e1f3fc688882dc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "entity.h"
#include "loader.h"
#include "main.h"

void *walker_new(struct entities *entities);
int walker_property(void *const restrict entity, char const *const restrict property, char const *const restrict value);
void *warp_new(struct entities *entities);
int warp_property(void *const restrict entity, char const *const restrict property, char const *const restrict value);

void funs_init(void) {
	res_push_fun(walker_new, walker_property, "walker");
	res_push_fun(warp_new, warp_property, "warp");
}