mirror of
https://github.com/ctruLua/ctruLua.git
synced 2025-10-27 16:39:29 +00:00
12 lines
168 B
C
12 lines
168 B
C
#ifndef GFX_H
|
|
#define GFX_H
|
|
|
|
typedef struct {
|
|
GPU_SCISSORMODE mode;
|
|
u32 x; u32 y;
|
|
u32 width; u32 height;
|
|
} scissor_state;
|
|
|
|
extern scissor_state lua_scissor;
|
|
|
|
#endif
|