assets for player

This commit is contained in:
arthur.jamet
2021-05-25 14:06:57 +02:00
parent efa6d4b154
commit 5c78a4bd07
13 changed files with 31478 additions and 14 deletions

View File

@@ -10,7 +10,7 @@
namespace RAY {
namespace Drawables {
class IDrawable;
class ADrawable2D;
}
//! @brief Interface for any drawable surface
class Canvas {
@@ -19,7 +19,7 @@ namespace RAY {
virtual ~Canvas() = default;
//! @brief draw drawable
virtual void draw(Drawables::IDrawable &) = 0;
virtual void draw(Drawables::ADrawable2D &) = 0;
protected:
private: