feat: add script module for note-to-command mapping with FIFO support

This commit is contained in:
Loic Coenen
2026-05-18 21:12:29 +00:00
committed by Loic Coenen (aider)
parent 16a800209f
commit f776b8a361
7 changed files with 638 additions and 5 deletions

7
client/src/script.h Normal file
View File

@@ -0,0 +1,7 @@
#ifndef SCRIPT_H
#define SCRIPT_H
int script_load(const char *path);
void script_handle_note(int note);
#endif