game.h 161 B

123456789
  1. #pragma once
  2. #include "engine/engine.h"
  3. #include "engine/sensors/imu.h"
  4. typedef struct {
  5. Imu* imu;
  6. bool imu_present;
  7. uint32_t score;
  8. } GameContext;