Files
Reboot-Launcher/dependencies/reboot/Project Reboot 3.0/FortVolumeManager.h
Alessandro Autiero b41e22adeb <feat: New project structure>
<feat: New release>
2023-09-02 15:34:15 +02:00

13 lines
483 B
C++

#pragma once
#include "FortVolume.h"
#include "FortPlaysetItemDefinition.h"
class AFortVolumeManager : public AActor
{
public:
static inline AFortVolume* (*SpawnVolumeOriginal)(AFortVolumeManager* VolumeManager, UClass* VolumeActor, UFortPlaysetItemDefinition* Playset, FVector Location, FRotator Rotation);
static AFortVolume* SpawnVolumeHook(AFortVolumeManager* VolumeManager, UClass* VolumeActor, UFortPlaysetItemDefinition* Playset, FVector Location, FRotator Rotation);
};