CelticCraft/Plugins/VoxelFree/Source/Voxel/Public/VoxelUtilities/VoxelExampleUtilities.h

15 lines
No EOL
271 B
C++

// Copyright 2020 Phyronnaz
#pragma once
#include "CoreMinimal.h"
#include "UObject/UObjectGlobals.h"
namespace FVoxelExampleUtilities
{
template<typename T>
T* LoadExampleObject(const TCHAR* Name)
{
return LoadObject<T>(nullptr, Name, nullptr, LOAD_NoWarn);
}
}