blob: c4f7f2dc1c7ed7a1acac7ff3370d3b645b43b62f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "Button.h"
namespace crepe {
Button::Button(
game_object_id_t id, const vec2 & dimensions, const vec2 & offset, const Data & data
)
: UIObject(id, dimensions, offset),
data(data) {}
} // namespace crepe
|