refactor code to multiple modules

This commit is contained in:
DanyLE
2024-03-30 00:18:51 +01:00
parent 48543efbbd
commit c1960f0438
17 changed files with 1899 additions and 828 deletions

8
cursor.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef DIYAC_CURSOR_H
#define DIYAC_CURSOR_H
#include "diyac.h"
void diyac_init_cursor_manager(struct diyac_server * server);
void diyac_reset_cursor_mode(struct diyac_server *server);
#endif