diff options
author | Max-001 <maxsmits21@kpnmail.nl> | 2025-01-06 09:58:04 +0100 |
---|---|---|
committer | Max-001 <maxsmits21@kpnmail.nl> | 2025-01-06 09:58:04 +0100 |
commit | db12396d0033df612d1cd1cd161b716d4c508fa7 (patch) | |
tree | 94bb98137b3e0ff06a11f91345cd63362fb072cf /src/crepe/api/Button.cpp | |
parent | a4576c3bab0901074c53209c141b2a767c60d38a (diff) | |
parent | cf6ca6be5a9deac4de921f50d0aedf6a6156e0f4 (diff) |
Merge remote-tracking branch 'origin/master' into max/game
Diffstat (limited to 'src/crepe/api/Button.cpp')
-rw-r--r-- | src/crepe/api/Button.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/crepe/api/Button.cpp b/src/crepe/api/Button.cpp index 40153c9..8eadd89 100644 --- a/src/crepe/api/Button.cpp +++ b/src/crepe/api/Button.cpp @@ -2,7 +2,10 @@ namespace crepe { -Button::Button(game_object_id_t id, const vec2 & dimensions, const vec2 & offset) - : UIObject(id, dimensions, offset) {} +Button::Button( + game_object_id_t id, const vec2 & dimensions, const Data & data, const vec2 & offset +) + : UIObject(id, dimensions, offset), + data(data) {} } // namespace crepe |