GameBoy (Color) port of the GTA San Andreas arcade game Duality
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

strings.h 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * strings.h
  3. * Duality
  4. *
  5. * Copyright (C) 2025 Thomas Buck <thomas@xythobuz.de>
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * See <http://www.gnu.org/licenses/>.
  18. */
  19. #ifndef __STRINGS_H__
  20. #define __STRINGS_H__
  21. #include <gbdk/platform.h>
  22. enum STRINGS {
  23. STR_TOP = 0,
  24. STR_SCORE,
  25. STR_BLACK,
  26. STR_WHITE,
  27. STR_ENTER,
  28. STR_NAME,
  29. STR_START_OK,
  30. STR_CONF_MENU,
  31. STR_DEBUG_MENU,
  32. STR_DUALITY,
  33. STR_XYTHOBUZ,
  34. STR_GIT,
  35. STR_BUILD_DATE,
  36. STR_DATE,
  37. STR_TIME,
  38. STR_MP_TX,
  39. STR_WAIT,
  40. STR_VISIT,
  41. STR_URL,
  42. STR_PRINTOUT,
  43. STR_SUCCESS,
  44. STR_ERROR,
  45. STR_GB_PRINTER,
  46. STR_SCORE_PRINTOUT,
  47. STR_RESULT,
  48. STR_PRINTF_ERROR,
  49. STR_PRINTF_FRAMES,
  50. STR_PRINTF_TIMER,
  51. STR_PRINTF_STACK,
  52. STR_PRINTF_FPS,
  53. COUNT_STRINGS
  54. };
  55. const char *get_string(enum STRINGS s) BANKED;
  56. BANKREF_EXTERN(strings)
  57. #endif // __STRINGS_H__