mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-05 13:28:40 +00:00
11 lines
286 B
C
11 lines
286 B
C
// Copyright (c) 2024 Epic Games Tools
|
|
// Licensed under the MIT license (https://opensource.org/license/mit/)
|
|
|
|
#include "font_provider.c"
|
|
|
|
#if FP_BACKEND == FP_BACKEND_DWRITE
|
|
# include "dwrite/font_provider_dwrite.c"
|
|
#else
|
|
# error Font provider backend not specified.
|
|
#endif
|