Files
UnrealEngineUWP/Engine/Source/Runtime/Datasmith/CADKernel/Base/Public/UI/Console.h
jeanluc corenthin c4e44debb7 Moved CADKernel library code from /Engine/Source/Runtime/Datasmith/CADKernel to /Engine/Source/Runtime/Datasmith/CADKernel/Base
This is in preparation of the creation of a CADKernelEngine module

#rb jeanluc.corenthin
#rnx

[CL 34739992 by jeanluc corenthin in ue5-main branch]
2024-06-28 11:21:20 -04:00

25 lines
343 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Core/Types.h"
#include "UI/Message.h"
namespace UE::CADKernel
{
class CADKERNEL_API FConsole
{
public:
virtual ~FConsole()
{
}
virtual void Print(const TCHAR* Texte, EVerboseLevel VerboseLevel = EVerboseLevel::NoVerbose)
{}
};
} // namespace UE::CADKernel