GodotGlobal.hpp 456 B

1234567891011121314151617181920212223242526
  1. #ifndef GODOT_GLOBAL_HPP
  2. #define GODOT_GLOBAL_HPP
  3. #include "String.hpp"
  4. namespace godot {
  5. class Godot {
  6. public:
  7. static void print(const String& message);
  8. static void print_warning(const String& description, const String& function, const String& file, int line);
  9. static void print_error(const String& description, const String& function, const String& file, int line);
  10. };
  11. struct _RegisterState {
  12. static void *nativescript_handle;
  13. };
  14. }
  15. #endif