javascript

This commit is contained in:
2023-01-10 20:02:24 +00:00
parent 8e8af65125
commit bdde403a66
12 changed files with 278 additions and 759 deletions

View File

@@ -19,10 +19,10 @@ static int *downkeys = NULL;
static int mquit = 0;
static s7_pointer *pawns = NULL;
static void **pawns = NULL;
void set_pawn(s7_pointer menv) {
arrput(pawns, menv);
void set_pawn(void *pawn) {
arrput(pawns, pawn);
YughInfo("Now controling %d pawns.", arrlen(pawns));
}