From 8af35e5ed10f1b4cbef908948355a2832ea36fbe Mon Sep 17 00:00:00 2001 From: kkard2 Date: Sun, 14 Sep 2025 13:04:56 +0200 Subject: uv --- example.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'example.h') diff --git a/example.h b/example.h index 5c34ea1..df671e1 100644 --- a/example.h +++ b/example.h @@ -1,6 +1,8 @@ +#include + void init(); void draw_frame(sponge_Texture c); - +void mouse_move(int32_t x, int32_t y); #ifdef SPONGE_EXAMPLE_IMPLEMENTATION @@ -8,4 +10,8 @@ void draw_frame(sponge_Texture c); void init() {} #endif // SPONGE_EXAMPLE_INIT_DEFINED +#ifndef SPONGE_EXAMPLE_MOUSE_MOVE_DEFINED +void mouse_move(int32_t x, int32_t y) {} +#endif // SPONGE_EXAMPLE_MOUSE_MOVE_DEFINED + #endif // SPONGE_EXAMPLE_IMPLEMENTATION -- cgit v1.3.1