terminal/src/renderer/gdi/GdiEngine.cpp
Leonard Hecker c3ce3daedc wip
2024-09-27 12:32:22 +02:00

27 lines
426 B
C++

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
#include "precomp.h"
#include "GdiEngine.h"
using namespace Microsoft::Console::Types;
using namespace Microsoft::Console::Render;
GdiEngine::GdiEngine()
{
}
GdiEngine::~GdiEngine()
{
}
void GdiEngine::WaitUntilCanRender()
{
}
void GdiEngine::Render(RenderingPayload& payload)
{
UNREFERENCED_PARAMETER(payload);
}