13 lines
337 B
C++
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 {
|
|
|
|
|
|
};
|
|
}
|