mirror of
https://github.com/ctruLua/ctruLua.git
synced 2025-10-28 00:39:30 +00:00
10 lines
136 B
C
10 lines
136 B
C
#ifndef TEXTURE_H
|
|
#define TEXTURE_H
|
|
|
|
typedef struct {
|
|
sf2d_texture *texture;
|
|
float scaleX;
|
|
float scaleY;
|
|
} texture_userdata;
|
|
|
|
#endif
|