R-Type  1.0.1.0
Rewrite of the R-Type game with networking ability
Loading...
Searching...
No Matches
Parallax.hpp
1/*
2** EPITECH PROJECT, 2023
3** Parallax.hpp
4** File description:
5** Parallax.hpp
6*/
7
8#ifndef R_TYPE_PARALLAX_HPP
9#define R_TYPE_PARALLAX_HPP
10
11#include "uranus/engine/Engine.hpp"
12
13class Parallax : public engine::Base {
14public:
15 Parallax(const std::string &uniqueName1, std::vector<std::string> &names);
16
17private:
18};
19
20#endif //R_TYPE_PARALLAX_HPP
Definition: Parallax.hpp:13
Definition: Base.hpp:15