From 1876294f217d7faa2a07dbaaaab82d142ce42803 Mon Sep 17 00:00:00 2001 From: Aargh Rai Date: Sun, 5 Jul 2026 23:55:45 +0530 Subject: all in on uci the old server.c & log.c is gonna be removed soon --- src/uci/state.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/uci/state.h') diff --git a/src/uci/state.h b/src/uci/state.h index fd24b7e..cb0d63f 100644 --- a/src/uci/state.h +++ b/src/uci/state.h @@ -1,6 +1,8 @@ #ifndef UCI_STATE_H #define UCI_STATE_H +#include "engine/fen.h" + typedef struct { char* data; int length; @@ -78,6 +80,8 @@ typedef struct { char author[32]; bool debug; + struct fen_load position; + option_setting_t option_settings[11]; // options @@ -100,4 +104,9 @@ typedef struct { str_t uci_setpositionvalue; } uci_state; +struct uci_move { + int from; + int to; +}; + #endif // UCI_STATE_H -- cgit v1.2.3