Remove Canvas class

This commit is contained in:
2025-02-04 19:41:21 -05:00
parent d3f29e2072
commit 135a1564f2
2 changed files with 0 additions and 26 deletions

View File

@@ -1,24 +0,0 @@
/// Josh's User Interface Library
/// A C++20 Library for creating, styling, and rendering of a UI/UX widgets.
/// Developed and Maintained by Josh O'Leary @ Redacted Software.
/// Special Thanks to William Tomasine II and Maxine Hayes.
/// (c) 2024 Redacted Software
/// This work is dedicated to the public domain.
/// @file Canvas.hpp
/// @desc A 2D drawable canvas widget.
/// @edit 2024-11-27
#pragma once
#include <JUI/Widgets/Rect.hpp>
namespace JUI
{
class Canvas : public Rect
{
public:
protected:
private:
};
}

View File

@@ -1,2 +0,0 @@
#include <JUI/Widgets/Canvas.hpp>