Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
Izocel committed Jan 1, 2025
1 parent 9a1d60d commit 6f6f6bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Application/Modules/Configs.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ struct EspConfig : public ModuleConfig
struct AimConfig : public ModuleConfig
{
bool isAimActive, isClickActive, showAimCircle;
Circle aimCircle;
Circle aimCircle = {.radius = 32};
Box searchBox;
};
4 changes: 2 additions & 2 deletions Engine/Math/Shapes.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ namespace Shapes
struct Circle
{
Position p;
float r = 1;
Dimension d = {r * 2, r * 2};
float radius = 1;
Dimension d = {radius * 2, radius * 2};
GuiColor color;
GuiColor borderColor;
};
Expand Down

0 comments on commit 6f6f6bb

Please sign in to comment.