gates_of_skeldal/platform/error.cpp
2025-01-26 15:03:44 +01:00

9 lines
145 B
C++

#include <iostream>
extern "C" {
#include "error.h"
}
void display_error(const char *text) {
std::cerr << "ERROR:" << text << std::endl;
}