Quirks.h 402 B

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