diff options
author | chai <chaifix@163.com> | 2021-10-31 14:27:26 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-10-31 14:27:26 +0800 |
commit | 601442f94fc0dcfdc5a117c5f87d90b156d53045 (patch) | |
tree | b006bcd6a28a965a900c64f4716007fcb45eee98 /Runtime/Graphics/UIQuad.h | |
parent | 26f05c6e3dcac9995345fb5a2b031be7e3ea79e9 (diff) |
+static initiator
Diffstat (limited to 'Runtime/Graphics/UIQuad.h')
-rw-r--r-- | Runtime/Graphics/UIQuad.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/Runtime/Graphics/UIQuad.h b/Runtime/Graphics/UIQuad.h deleted file mode 100644 index a0d77a5..0000000 --- a/Runtime/Graphics/UIQuad.h +++ /dev/null @@ -1,18 +0,0 @@ -#pragma once - -class UIQuad -{ -public : - UIQuad(float l, float r, float t, float b) - { - m_Left = l; - m_Right = r; - m_Top = t; - m_Bottom = b; - } - void Draw(); - -private: - float m_Left, m_Right, m_Top, m_Bottom; - -}; |