25 lines
368 B
C++
25 lines
368 B
C++
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
namespace rem::features
|
|
{
|
|
struct Waypoint
|
|
{
|
|
float pos[3];
|
|
UINT system;
|
|
UINT target;
|
|
int waypointNumber;
|
|
};
|
|
|
|
struct JumpDestinationSolar
|
|
{
|
|
BYTE x000[0x1B4];
|
|
UINT destinationSystem;
|
|
UINT destinationGate;
|
|
};
|
|
|
|
void InitJumpDestinationWaypointFix();
|
|
}
|
|
|