starship/game.h

38 lines
1.1 KiB
C
Raw Normal View History

2025-03-01 05:58:12 -05:00
// Copyright 2025 Bill Rossi
//
// This file is part of Starship Futuretime
//
// Starship Futuretime is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
//
// Starship Futuretime is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along with Starship Futuretime. If not, see <https://www.gnu.org/licenses/>.
#ifndef GAME_H
#define GAME_H
2025-03-02 18:58:52 -05:00
typedef struct Game Game;
2025-03-01 05:58:12 -05:00
#include <stdlib.h>
#include "player.h"
2025-03-01 08:53:38 -05:00
#include "entity.h"
2025-03-08 10:08:44 -05:00
#include "level.h"
2025-03-01 05:58:12 -05:00
2025-03-02 18:58:52 -05:00
struct Game {
2025-03-01 05:58:12 -05:00
Player *player;
2025-03-01 11:19:00 -05:00
Entities *enemies;
Entities *bullets;
2025-03-08 10:08:44 -05:00
Level *level;
2025-03-08 10:25:24 -05:00
Camera2D *camera;
2025-03-01 05:58:12 -05:00
/*
Levels levels;
*/
bool should_close;
2025-03-02 18:58:52 -05:00
};
2025-03-01 05:58:12 -05:00
void initialize_game(Game *g);
void run_until_closing(Game *g);
2025-03-02 18:58:52 -05:00
void add_entity(Entities *entities, Entity *e);
2025-03-01 05:58:12 -05:00
#endif