diff options
Diffstat (limited to 'src/crepe/api/Config.h')
-rw-r--r-- | src/crepe/api/Config.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/crepe/api/Config.h b/src/crepe/api/Config.h index fae31f4..d11f3f2 100644 --- a/src/crepe/api/Config.h +++ b/src/crepe/api/Config.h @@ -45,8 +45,12 @@ struct Config final { //! Physics-related settings struct physics { // NOLINT - //! Gravity value of physics system - double gravity = 1; + /** + * \brief gravity value of physics system + * + * Gravity value of game. + */ + float gravity = 10; } physics; //! Default window settings |