Files
ReJUI/include/JUI/Base/CanvasBase.hpp
2025-06-04 14:34:38 -05:00

13 lines
337 B
C++

#pragma region
namespace JUI {
/// The CanvasBase class is an object that handles managing and drawing a RenderTarget reference.
/// This class is similar to ImageBase in that it contains and renders a texture-type object,
/// But differs in that this one is intended to be used for interactive drawing.
class CanvasBase {
};
}