1
0
mirror of https://github.com/CPunch/Laika.git synced 2025-11-03 03:50:16 +00:00

Added Windows Bot client

- Shells 'work' but line endings aren't converted yet so pressing enter doesn't work lol
This commit is contained in:
2022-03-17 18:22:26 -05:00
parent 851cb95d75
commit 4833dea67f
8 changed files with 340 additions and 107 deletions

View File

@@ -4,10 +4,7 @@
#include <stddef.h>
struct sLaika_bot;
struct sLaika_shell {
int pid;
int fd;
};
struct sLaika_shell;
struct sLaika_shell *laikaB_newShell(struct sLaika_bot *bot, int cols, int rows);
void laikaB_freeShell(struct sLaika_bot *bot, struct sLaika_shell *shell);