mirror of
https://github.com/Auties00/Reboot-Launcher.git
synced 2026-01-13 03:02:22 +01:00
13 lines
483 B
C++
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);
|
|
}; |