platform.h 210 B

12345678910111213
  1. #ifndef INCLUDE_PLATFORM_H
  2. #define INCLUDE_PLATFORM_H
  3. #include <cstdint>
  4. #include <3ds.h>
  5. #include <sf2d.h>
  6. #define TIMER_FREQ 32768
  7. typedef sf2d_texture* texture_data_t;
  8. typedef unsigned keycode_t;
  9. #endif