diff options
| author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-04 20:13:09 +0100 | 
|---|---|---|
| committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-04 20:13:09 +0100 | 
| commit | 66fdcffaddb0ab31d12b6b1d7892a8edaa31af65 (patch) | |
| tree | 6c6692e0489133ac5264d53f7dc5a1e3d5be9320 /src/example | |
| parent | 6454975779acb39d7d546e11855a07a952e68e5b (diff) | |
make format
Diffstat (limited to 'src/example')
| -rw-r--r-- | src/example/button.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/src/example/button.cpp b/src/example/button.cpp index 7efd889..00bdc28 100644 --- a/src/example/button.cpp +++ b/src/example/button.cpp @@ -36,7 +36,8 @@ int main(int argc, char * argv[]) {  	std::function<void()> on_click = [&]() { std::cout << "button clicked" << std::endl; };  	std::function<void()> on_enter = [&]() { std::cout << "enter" << std::endl; };  	std::function<void()> on_exit = [&]() { std::cout << "exit" << std::endl; }; -	auto & button = button_obj.add_component<Button>(vec2{100,100},vec2{0,0}, on_click, false); +	auto & button +		= button_obj.add_component<Button>(vec2{100, 100}, vec2{0, 0}, on_click, false);  	button.on_mouse_enter = on_enter;  	button.on_mouse_exit = on_exit;  	button.is_toggle = true; |