#ifndef GO_ARGS_H #define GO_ARGS_H #include "ipc/moves.h" #include "ipc/engine_message.h" typedef struct { ipc_moves_t searchmoves; bool ponder; int wtime; int btime; int winc; int binc; int movestogo; int depth; int nodes; int mate; int movetime; bool infinite; int perft; } go_args_t; bool should_continue(engine_message_t *message, go_args_t *go); #endif // GO_ARGS_H