Umorna -- Tiny game written to test 'chads' library, it uses assets from itch.io...
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

27 řádky
452B

  1. #include "game.h"
  2. #include "render.h"
  3. #include "engine.h"
  4. #include <raylib.h>
  5. int main (void) {
  6. game_configure ();
  7. engine_configure ();
  8. layout_configure ();
  9. while (engine_active != 0) {
  10. layout_synchronize ();
  11. engine_synchronize ();
  12. render_map (camera_x, camera_y);
  13. render_side ();
  14. render_menu (menu_traits, 0, 0, 1, 1, 0);
  15. render_menu (menu_skills, 0, 0, 1, 1, 0);
  16. render_menu (menu_values, 0, 0, 1, 1, 0);
  17. }
  18. return (0);
  19. }