game_loop.h 92 B

123456
  1. #pragma once
  2. #include <furi.h>
  3. struct GameState {
  4. bool (*update)(void* inputState);
  5. };