summaryrefslogtreecommitdiffhomepage
path: root/Label.h
blob: 6372a6ff359506a734825ad0821cc4d99e56fbce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <raylib.h>


struct Label
{
    Vector2 pos;
    Vector2 base;
    float depth;
    float length;
    bool hover;
};