1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-09-28 18:02:14 +02:00
GiantsTools/Sdk/Include/GameObject/Public/Components/Jetpack.h

27 lines
470 B
C
Raw Permalink Normal View History

2021-01-24 00:40:09 +01:00
#pragma once
namespace GameObj
{
struct ThrustParameters
{
float ThrustMaxHeight{};
float ThrustPower{};
float ThrustLowPct{};
float ThrustHighPct{};
float ThrustPowerMax{};
float ThrustFwdSlowMax{};
float ThrustDrowning{};
};
struct Jetpack
{
Jetpack(
const ThrustParameters& thrustParameters)
: ThrustParameters(thrustParameters)
{
}
ThrustParameters ThrustParameters;
SBYTE ThrustControl{}; // Thrust control state
};
}