1
0
Fork 0
mirror of https://github.com/ctruLua/ctruLua.git synced 2025-10-27 16:39:29 +00:00
ctruLua/source/texture.h

11 lines
153 B
C

#ifndef TEXTURE_H
#define TEXTURE_H
typedef struct {
sf2d_texture *texture;
float scaleX;
float scaleY;
u32 blendColor;
} texture_userdata;
#endif