kitchen: README + MISSIONS/engine-c keep-drop notes

This commit is contained in:
Hernâni Marques 2026-09-17 21:48:48 +02:00
parent 1d351918da
commit 575d7d29b8
No known key found for this signature in database
130 changed files with 9817 additions and 1 deletions

View file

@ -0,0 +1,8 @@
#ifndef OK_UNIT_H
#define OK_UNIT_H
#include "ok_types.h"
int ok_unit_spawn(OkWorld *w, OkFaction f, OkUnitKind k, int x, int y);
void ok_unit_step_toward(OkWorld *w, int uid, int tx, int ty);
void ok_world_tick(OkWorld *w);
int ok_world_alive_count(const OkWorld *w, OkFaction f);
#endif