#pragma once #include "Drawable.h" #include "Logger.h" class Box : public Drawable { public: Box(Graphics& gfx, float position[][6], float r, float g, float b, Logger& logger); DirectX::XMMATRIX GetTransformXM() const noexcept override; private: // positional float position[8][6]; // color float r; float g; float b; };