mirror of
https://github.com/Auties00/Reboot-Launcher.git
synced 2026-01-13 19:22:22 +01:00
19 lines
459 B
C++
19 lines
459 B
C++
#pragma once
|
|
|
|
#include "FortAthenaVehicle.h"
|
|
|
|
class AFortDagwoodVehicle : public AFortAthenaVehicle // AFortAthenaSKMotorVehicle
|
|
{
|
|
public:
|
|
void SetFuel(float NewFuel)
|
|
{
|
|
static auto SetFuelFn = FindObject<UFunction>(L"/Script/ValetRuntime.FortDagwoodVehicle.SetFuel");
|
|
this->ProcessEvent(SetFuelFn, &NewFuel);
|
|
}
|
|
|
|
static UClass* StaticClass()
|
|
{
|
|
static auto Class = FindObject<UClass>(L"/Script/ValetRuntime.FortDagwoodVehicle");
|
|
return Class;
|
|
}
|
|
}; |