1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-07-02 19:41:46 +02:00
GiantsTools/Sdk/Include/AI/Public/JetpackUtil.h

13 lines
244 B
C
Raw Normal View History

2021-01-24 00:40:09 +01:00
#pragma once
#include "GameObject/Public/Components/Jetpack.h"
namespace AI
{
class JetpackUtil
{
public:
static SBYTE CalcThrustForHeight(GameObj::Jetpack& component, Object* obj, float minHeight, float height);
};
}