aboutsummaryrefslogtreecommitdiffstats
path: root/engine.c
blob: a7fbf116440b2697c2d0c9736dd9917eb578baac (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <string.h>

#include "unit.h"
#include "engine.h"

void
init_engine(Engine *e) {
	memset(e, 0, sizeof(*e));
}