feat(Core/SAI): Wp table add in orientation and delay collumn (#8927)

ADD (Core) Wp table add in orientation and delay collumn
TC Cherry pick of TrinityCore/TrinityCore@4b7d19c
This commit is contained in:
acidmanifesto
2021-11-06 07:43:45 -04:00
committed by GitHub
parent 3d556c4b6e
commit 93bbff4cca
4 changed files with 14 additions and 4 deletions

View File

@@ -28,18 +28,22 @@
struct WayPoint
{
WayPoint(uint32 _id, float _x, float _y, float _z)
WayPoint(uint32 _id, float _x, float _y, float _z, float _o, uint32 _delay)
{
id = _id;
x = _x;
y = _y;
z = _z;
o = _o;
delay = _delay;
}
uint32 id;
float x;
float y;
float z;
float o;
uint32 delay;
};
enum SMART_EVENT_PHASE