Skip to content

Commit

Permalink
Update ApplicationSettings
Browse files Browse the repository at this point in the history
  • Loading branch information
xorz57 committed Jan 24, 2024
1 parent e5b6e71 commit d067ffe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/ApplicationSettings.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
#include <string>

struct ApplicationSettings {
unsigned int width{0U};
unsigned int height{0U};
unsigned int width = 0U;
unsigned int height = 0U;
std::string title;
float fixedDeltaTime{1.0f / 64.0f};
float timeScale{1.0f};
float fixedDeltaTime = 1.0f / 64.0f;
float timeScale = 1.0f;
};

0 comments on commit d067ffe

Please sign in to comment.