mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 19:02:21 +01:00
fix restarting, add cheat teleport and help, build free and infinite ammo, fix restarting on c1, fix some gui issues.
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);
|
|
}; |