mirror of
https://github.com/d0k3/GodMode9.git
synced 2025-06-26 05:32:47 +00:00
13 lines
177 B
C
13 lines
177 B
C
|
#pragma once
|
||
|
|
||
|
#include <types.h>
|
||
|
|
||
|
typedef struct {
|
||
|
s16 cpad_x, cpad_y;
|
||
|
s16 ts_x, ts_y;
|
||
|
} CODEC_Input;
|
||
|
|
||
|
void CODEC_Init(void);
|
||
|
|
||
|
void CODEC_Get(CODEC_Input *input);
|