engine/test/src/game.hpp

11 lines
191 B
C++
Raw Normal View History

2023-05-02 11:02:43 +00:00
#ifndef ENGINE_TEST_SRC_GAME_H_
#define ENGINE_TEST_SRC_GAME_H_
2022-11-07 20:15:26 +00:00
struct GameSettings {
2023-05-02 11:02:43 +00:00
bool enable_frame_limiter;
bool enable_validation;
};
2023-05-02 11:02:43 +00:00
void PlayGame(GameSettings settings);
#endif