summaryrefslogtreecommitdiff
path: root/Runtime/Graphics/UIQuad.h
blob: a0d77a555572ddd5b032d9923dd95b30458ce523 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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;

};