You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
581 B
C++

#pragma once
#include <vector>
#include "enums.h"
#include "bullet.h"
#include "ship.h"
#include "star.h"
class ObjectManager {
public:
Ship player;
std::vector<Ship> enemies;
std::vector<Bullet> player_bullets;
std::vector<Bullet> enemy_bullets;
std::vector<Star> background;
ObjectManager();
void init_player(Ship _player);
bool chk_player_col();
int chk_bullet_col();
void draw_objects();
void destroy_objects();
void move_enemies();
void set_background();
void move_background();
private:
bool col_eval(Hitbox h1, Hitbox h2);
};