thrive/main.c

29 lines
508 B
C
Raw Normal View History

2024-08-28 17:27:35 -04:00
#include <stdlib.h>
2025-01-04 04:45:44 -05:00
#include <stdio.h>
2025-01-02 20:57:00 -05:00
#include <stdbool.h>
2025-01-29 05:13:32 -05:00
#include <string.h>
2024-08-28 17:27:35 -04:00
2025-01-24 05:46:40 -05:00
#include <raylib.h>
2025-01-19 10:10:42 -05:00
2025-01-24 18:22:26 -05:00
#include "intro.h"
2025-01-19 10:10:42 -05:00
#include "game.h"
2024-08-28 17:27:35 -04:00
2025-01-24 18:22:26 -05:00
int main(int argc, char** argv) {
InitWindow(800, 450, "Thrive");
2025-01-19 10:10:42 -05:00
SetTargetFPS(60);
2024-08-28 17:27:35 -04:00
2025-01-29 05:13:32 -05:00
if (!getenv("SKIP_INTRO") || strcmp(getenv("SKIP_INTRO"), "1") != 0) {
display_loading();
Intro *i = load_intro();
intro_display(i);
}
2025-01-24 18:22:26 -05:00
2025-01-04 04:45:44 -05:00
Game *g = game_create();
2025-01-16 20:15:50 -05:00
game_run_until_close(g);
2024-08-28 17:27:35 -04:00
CloseWindow();
free_game(g);
2024-08-28 17:27:35 -04:00
return 0;
}