Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

26 lines
434 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "MuR/Settings.h"
namespace UE::Mutable::Private
{
void FSettings::SetProfile( bool bEnabled )
{
bProfile = bEnabled;
}
void FSettings::SetWorkingMemoryBytes( uint64 Bytes )
{
WorkingMemoryBytes = Bytes;
}
void FSettings::SetImageCompressionQuality( int32 Quality )
{
ImageCompressionQuality = Quality;
}
}