pandemonium_engine/platform/frt_sdl/frt.h
2022-03-27 13:31:47 +02:00

26 lines
431 B
C++

// frt.h
/*
FRT - A Godot platform targeting single board computers
Copyright (c) 2017-2022 Emanuele Fornara
SPDX-License-Identifier: MIT
*/
#define FRT_VERSION "2.0.0"
#if __cplusplus >= 201103L
#define FRT_OVERRIDE override
#else
#define FRT_OVERRIDE
#endif
namespace frt {
void warn(const char *format, ...);
#if __cplusplus >= 201103L
[[ noreturn ]]
#endif
void fatal(const char *format, ...);
} // namespace frt