mirror of
https://github.com/zoriya/Bomberman.git
synced 2025-12-21 13:55:10 +00:00
25 lines
351 B
C++
25 lines
351 B
C++
/*
|
|
** EPITECH PROJECT, 2021
|
|
** Bomberman
|
|
** File description:
|
|
** Ressource
|
|
*/
|
|
|
|
#ifndef RESSOURCE_HPP_
|
|
#define RESSOURCE_HPP_
|
|
|
|
#include <string>
|
|
|
|
namespace RAY {
|
|
class IRessource {
|
|
public:
|
|
virtual ~IRessource() = default;
|
|
|
|
virtual bool load(const std::string &filePath) = 0;
|
|
|
|
virtual bool unload() = 0;
|
|
};
|
|
};
|
|
|
|
#endif /* !RESSOURCE_HPP_ */
|