This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // cursor_world.c - Исправленная версия | |
| #include "cursor_world.h" | |
| #include "pico/time.h" | |
| #include <stdlib.h> | |
| static cursor_world_state_t cursor; | |
| void cursor_world_init(void) { | |
| cursor.world_x = 0; | |
| cursor.world_y = 0; |