mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-10 20:12:10 +01:00
26 lines
431 B
C++
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.1"
|
||
|
|
||
|
#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
|