#ifndef SCRIPTING_H #define SCRIPTING_H #include #include #include typedef struct context t_ctx; struct state { t_ctx *hidden_ptr; uint64_t tick_count; }; bool scripting_init(void); #endif