sekito: add hook

This commit is contained in:
2025-09-30 12:14:00 +02:00
parent 7dd1cd4a62
commit f33fe0f2ae
26 changed files with 1941 additions and 1 deletions

10
games/sekitoio/backend.h Normal file
View File

@ -0,0 +1,10 @@
#pragma once
#include <stdint.h>
#include "sekitoio/sekitoio.h"
struct sekito_io_backend {
void (*get_gamebtns)(uint32_t *gamebtn);
void (*get_trackball)(uint16_t *x, uint16_t *y);
};