diff options
author | crupest <crupest@outlook.com> | 2019-05-24 23:45:58 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-05-24 23:45:58 +0800 |
commit | b6db663269201fa14a6a4aa1b9042645a9e8f859 (patch) | |
tree | 1984e2c2784fb9623d4c20fbdd6fc650792e133c /include/cru/platform/graph/brush.hpp | |
parent | b9df1bcaea0c19b2e29479cdb1ad5a39e23c4ee7 (diff) | |
download | cru-b6db663269201fa14a6a4aa1b9042645a9e8f859.tar.gz cru-b6db663269201fa14a6a4aa1b9042645a9e8f859.tar.bz2 cru-b6db663269201fa14a6a4aa1b9042645a9e8f859.zip |
...
Diffstat (limited to 'include/cru/platform/graph/brush.hpp')
-rw-r--r-- | include/cru/platform/graph/brush.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/cru/platform/graph/brush.hpp b/include/cru/platform/graph/brush.hpp index 8ffbfc97..7688ec4a 100644 --- a/include/cru/platform/graph/brush.hpp +++ b/include/cru/platform/graph/brush.hpp @@ -4,9 +4,9 @@ #include "cru/common/ui_base.hpp" namespace cru::platform::graph { -struct Brush : public virtual Interface {}; +struct IBrush : public virtual Interface {}; -struct SolidColorBrush : public virtual Brush { +struct ISolidColorBrush : public virtual IBrush { virtual ui::Color GetColor() = 0; virtual void SetColor(const ui::Color& color) = 0; }; |