blob: 8eadd898b0653ca117f3285537581f18c366a3e6 (
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 Data & data, const vec2 & offset
)
: UIObject(id, dimensions, offset),
data(data) {}
} // namespace crepe
|