summaryrefslogtreecommitdiffhomepage
path: root/Label.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-05-21 11:55:08 +0200
committerAki <please@ignore.pl>2022-05-21 11:55:08 +0200
commit7863e4caa1d07aef348a437fe0a662db68fd7ac3 (patch)
treebf52dfa7a7c45be1d1a696f5bf7c0c3f90beba68 /Label.h
parentde8d7a812c4da9f0375dc47626c0e836ba728207 (diff)
downloadderelict-7863e4caa1d07aef348a437fe0a662db68fd7ac3.zip
derelict-7863e4caa1d07aef348a437fe0a662db68fd7ac3.tar.gz
derelict-7863e4caa1d07aef348a437fe0a662db68fd7ac3.tar.bz2
Added naive Timeline
Diffstat (limited to 'Label.h')
-rw-r--r--Label.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Label.h b/Label.h
index 6372a6f..cfd5fc7 100644
--- a/Label.h
+++ b/Label.h
@@ -1,7 +1,11 @@
#pragma once
+#include <functional>
+
#include <raylib.h>
+#include "Wreck.h"
+
struct Label
{
@@ -10,4 +14,5 @@ struct Label
float depth;
float length;
bool hover;
+ std::reference_wrapper<const Wreck> wreck;
};