diff options
author | chai <chaifix@163.com> | 2021-10-28 01:52:12 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-10-28 01:52:12 +0800 |
commit | 80dca084b568e4e77d2a4031ce8625cdabc660ab (patch) | |
tree | d8c0172aeddca648ec89cbbbda72a938f3ef7433 /Runtime/Graphics/UIQuad.h | |
parent | 1b6f71b2777bdc74d63f988346a8cfee766718b0 (diff) |
+ custom vertex buffer
Diffstat (limited to 'Runtime/Graphics/UIQuad.h')
-rw-r--r-- | Runtime/Graphics/UIQuad.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Runtime/Graphics/UIQuad.h b/Runtime/Graphics/UIQuad.h new file mode 100644 index 0000000..166b662 --- /dev/null +++ b/Runtime/Graphics/UIQuad.h @@ -0,0 +1,11 @@ +#pragma once + +class UIQuad +{ +public : + void Draw(); + +private: + float m_Left, m_Right, m_Top, m_Bottom; + +}; |