mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-25 14:07:46 +00:00
Fixed building on newer GCC
This commit is contained in:
parent
d3b5ef15b2
commit
d7525b2471
3 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
#include <math.h>
|
||||
#include <cmath>
|
||||
#include "UtilMath.h"
|
||||
|
||||
float Core::Math::Util::distanceSq( float x, float y, float z, float x1, float y1, float z1 )
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
#include <stdlib.h>
|
||||
#include <time.h>
|
||||
#include <stdint.h>
|
||||
#include <cmath>
|
||||
|
||||
#include <src/servers/Server_Common/Database/Database.h>
|
||||
#include <src/servers/Server_Common/Logging/Logger.h>
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
#include "CalcBattle.h"
|
||||
#include "Actor.h"
|
||||
#include "Player.h"
|
||||
#include <cmath>
|
||||
|
||||
using namespace Core::Entity;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue