mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-05 14:55:38 +01:00
13 lines
244 B
C++
13 lines
244 B
C++
#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);
|
|
};
|
|
}
|