1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-07-03 03:51:45 +02:00
GiantsTools/Sdk/Include/GameObject/Public/Components/Jetpack.h
2021-01-23 15:40:09 -08:00

27 lines
470 B
C++

#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
};
}