Some checks failed
Build and Deploy / build-windows (CLANG64) (push) Has been cancelled
Build and Deploy / build-macos (push) Has been cancelled
Build and Deploy / build-linux (push) Has been cancelled
Build and Deploy / package-dist (push) Has been cancelled
Build and Deploy / deploy-itch (push) Has been cancelled
Build and Deploy / deploy-gitea (push) Has been cancelled
13 lines
198 B
C
13 lines
198 B
C
#ifndef QJS_SPRITE_H
|
|
#define QJS_SPRITE_H
|
|
|
|
#include "quickjs.h"
|
|
|
|
#include "sprite.h"
|
|
|
|
JSValue js_sprite_use(JSContext *ctx);
|
|
|
|
sprite *js2sprite(JSContext *js, JSValue v);
|
|
|
|
#endif /* QJS_SPRITE_H */
|