Files
Project-Reboot-3.0/Project Reboot 3.0/Level.h
Gray b3d9ab9e8b Dude 💀
2024-03-20 21:45:38 -04:00

14 lines
276 B
C++

#pragma once
#include "World.h"
class ULevel : public UObject
{
public:
UWorld*& GetOwningWorld();
bool HasVisibilityChangeRequestPending();
bool IsAssociatingLevel();
AWorldSettings* GetWorldSettings(bool bChecked = true) const;
static class UClass* StaticClass();
};