mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-05 06:00:33 -04:00
9 lines
145 B
C++
9 lines
145 B
C++
#include <iostream>
|
|
extern "C" {
|
|
#include "error.h"
|
|
}
|
|
|
|
|
|
void display_error(const char *text) {
|
|
std::cerr << "ERROR:" << text << std::endl;
|
|
}
|