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