Files
Bomberman/lib/Ray/sources/IRessource.hpp
2021-05-21 23:50:54 +02:00

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_ */