diff options
author | crupest <crupest@outlook.com> | 2023-10-07 18:54:07 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-10-07 18:54:07 +0800 |
commit | 6c6dc053488ded83581943844c2b4c2a606218f3 (patch) | |
tree | e63ebf7aae4ecde9054fc0600e33a3564dd8f928 /include/cru/platform/graphics/web_canvas/WebCanvasBrush.h | |
parent | fba160f15ddba40c50d714e37f84d83d243ccd9c (diff) | |
download | cru-6c6dc053488ded83581943844c2b4c2a606218f3.tar.gz cru-6c6dc053488ded83581943844c2b4c2a606218f3.tar.bz2 cru-6c6dc053488ded83581943844c2b4c2a606218f3.zip |
...
Diffstat (limited to 'include/cru/platform/graphics/web_canvas/WebCanvasBrush.h')
-rw-r--r-- | include/cru/platform/graphics/web_canvas/WebCanvasBrush.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/cru/platform/graphics/web_canvas/WebCanvasBrush.h b/include/cru/platform/graphics/web_canvas/WebCanvasBrush.h new file mode 100644 index 00000000..f70c5ecc --- /dev/null +++ b/include/cru/platform/graphics/web_canvas/WebCanvasBrush.h @@ -0,0 +1,9 @@ +#pragma once +#include "../Brush.h" +#include "WebCanvasResource.h" + +namespace cru::platform::graphics::web_canvas { +class WebCanvasBrush : public WebCanvasResource, public virtual IBrush { + +}; +} |