mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-07-19 23:16:48 +00:00
13 lines
351 B
C
13 lines
351 B
C
// Copyright (c) 2024 Epic Games Tools
|
|
// Licensed under the MIT license (https://opensource.org/license/mit/)
|
|
|
|
#include "demon/demon_core.c"
|
|
|
|
#if OS_WINDOWS
|
|
# include "demon/win32/demon_core_win32.c"
|
|
#elif OS_LINUX
|
|
# include "demon/linux/demon_core_linux.c"
|
|
#else
|
|
# error Demon layer backend not defined for this operating system.
|
|
#endif
|