Skip to content

Commit

Permalink
Merge pull request #1 from crumblingstatue/cmath-fix
Browse files Browse the repository at this point in the history
Add missing cmath includes
  • Loading branch information
Kofybrek authored Aug 16, 2021
2 parents 75d6d4d + 3c79a8b commit cccc0cd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions Source/DrawText.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <cmath>
#include <SFML/Graphics.hpp>

#include "Headers/DrawText.hpp"
Expand Down
1 change: 1 addition & 0 deletions Source/Ghost.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include <array>
#include <cmath>
#include <SFML/Graphics.hpp>

#include "Headers/Global.hpp"
Expand Down
1 change: 1 addition & 0 deletions Source/GhostManager.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include <array>
#include <cmath>
#include <SFML/Graphics.hpp>

#include "Headers/Global.hpp"
Expand Down
1 change: 1 addition & 0 deletions Source/MapCollision.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include <array>
#include <cmath>

#include "Headers/Global.hpp"
#include "Headers/MapCollision.hpp"
Expand Down
1 change: 1 addition & 0 deletions Source/Pacman.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include <array>
#include <cmath>
#include <SFML/Graphics.hpp>

#include "Headers/Global.hpp"
Expand Down

0 comments on commit cccc0cd

Please sign in to comment.