You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
This is in preparation of the creation of a CADKernelEngine module #rb jeanluc.corenthin #rnx [CL 34739992 by jeanluc corenthin in ue5-main branch]
25 lines
343 B
C++
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
|
|
|