ekt: initial code

This commit is contained in:
2025-08-31 20:47:24 +02:00
parent 4788e54398
commit d9210b52e1
26 changed files with 2295 additions and 0 deletions

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

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