Files
Bomberman/lib/Ray/sources/Drawables/IDrawable.hpp
2021-05-21 09:48:13 +02:00

32 lines
502 B
C++

/*
** EPITECH PROJECT, 2021
** Bomberman
** File description:
** IDrawable
*/
#ifndef IDRAWABLE_HPP_
#define IDRAWABLE_HPP_
#include "Drawables/Image.hpp"
#include "Window.hpp"
namespace RAY
{
class Window;
class Image;
namespace Drawables {
class IDrawable {
public:
virtual ~IDrawable() = 0;
virtual void drawOn(RAY::Window &window) = 0;
protected:
private:
};
}
}
#endif /* !IDRAWABLE_HPP_ */