Quirks.h 426 B

1234567891011121314151617181920
  1. #ifndef INCLUDE_QUIRKS_H
  2. #define INCLUDE_QUIRKS_H
  3. #include <memory>
  4. #include <TINYSTL/string.h>
  5. namespace WalrusRPG
  6. {
  7. namespace Quirks
  8. {
  9. void init(const char *argv_0);
  10. void deinit();
  11. // Relative path to absolute path resolving.
  12. // Exists because at this time Ndless doesn't support relative paths.
  13. std::unique_ptr<char> solve_absolute_path(const char *path);
  14. }
  15. }
  16. #endif