14 lines
166 B
C
14 lines
166 B
C
#ifndef SPRITE_H
|
|
#define SPRITE_H
|
|
|
|
#include "HandmadeMath.h"
|
|
#include "script.h"
|
|
|
|
typedef struct {
|
|
HMM_Mat3 affine;
|
|
JSValue image;
|
|
int layer;
|
|
} sprite;
|
|
|
|
#endif
|