Files
UnrealEngine/Engine/Plugins/Experimental/LearningAgents/Source/Learning/Public/LearningLog.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

26 lines
357 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Logging/LogMacros.h"
#define UE_API LEARNING_API
namespace UE::Learning
{
/**
* Log Settings
*/
enum class ELogSetting : uint8
{
// Logs basic information
Normal,
// No logging
Silent,
};
}
UE_API DECLARE_LOG_CATEGORY_EXTERN(LogLearning, Log, All);
#undef UE_API