13 lines
322 B
C
13 lines
322 B
C
|
#include "../kitty.h"
|
||
|
#include "ast.h"
|
||
|
|
||
|
void pawlang_kitty_make(struct VStack *stack, int offset) {
|
||
|
void *kitty = kitty_make(stack->scene->mem);
|
||
|
vstack_push(stack, PSV_P(kitty));
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
void pawlang_kitty_free(struct VStack *stack, int offset) {
|
||
|
free_kitty(stack->scene->vk, vstack_poke_n(stack, offset).p);
|
||
|
}
|