Uranus  1.0.1.0
Uranus is a GameEngine written in C++
Loading...
Searching...
No Matches
BulletEnemy.hpp
1/*
2** EPITECH PROJECT, 2023
3** BulletEnemy.hpp
4** File description:
5** BulletEnemy.hpp
6*/
7
8#ifndef URANUS_BULLETENEMY_HPP
9#define URANUS_BULLETENEMY_HPP
10
11#include "Bullet.hpp"
12
13class BulletEnemy : public Bullet {
14public:
15 explicit BulletEnemy(const std::string &uniqueName, uranus::ecs::component::Position pos, std::shared_ptr<engine::Texture> &texture);
16
17 void move(size_t entity) override;
18
19private:
20};
21
22#endif // URANUS_BULLETENEMY_HPP
Definition: BulletEnemy.hpp:13
Definition: Bullet.hpp:13
Definition: Components.hpp:22