engine/test/src/game.hpp
2023-05-02 12:02:43 +01:00

11 lines
191 B
C++

#ifndef ENGINE_TEST_SRC_GAME_H_
#define ENGINE_TEST_SRC_GAME_H_
struct GameSettings {
bool enable_frame_limiter;
bool enable_validation;
};
void PlayGame(GameSettings settings);
#endif