summaryrefslogtreecommitdiffhomepage
path: root/Label.h
blob: cfd5fc7b4324af456bbe87ebe155f4acde8862c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include <functional>

#include <raylib.h>

#include "Wreck.h"


struct Label
{
    Vector2 pos;
    Vector2 base;
    float depth;
    float length;
    bool hover;
    std::reference_wrapper<const Wreck> wreck;
};