mirror of
https://github.com/ctruLua/ctruLua.git
synced 2025-10-27 16:39:29 +00:00
11 lines
153 B
C
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
|