2017-05-13 11:55:04 +00:00
|
|
|
#ifndef GODOT_GLOBAL_HPP
|
|
|
|
#define GODOT_GLOBAL_HPP
|
|
|
|
|
|
|
|
#include "String.hpp"
|
|
|
|
|
|
|
|
|
|
|
|
namespace godot {
|
|
|
|
|
2017-07-23 15:53:50 +00:00
|
|
|
class Godot {
|
2017-05-13 11:55:04 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
static void print(const String& message);
|
|
|
|
static void print_warning(const String& description, const String& function, const String& file, int line);
|
|
|
|
static void print_error(const String& description, const String& function, const String& file, int line);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|