thrive/parse.h

16 lines
238 B
C
Raw Normal View History

2025-01-12 20:15:25 -05:00
#ifndef _FD_PARSE_
#define _FD_PARSE_
2025-01-19 09:25:55 -05:00
typedef struct Command Command;
2025-01-12 20:15:25 -05:00
#include "game.h"
2025-01-19 09:25:55 -05:00
#include "word.h"
2025-01-12 20:15:25 -05:00
2025-01-19 09:25:55 -05:00
#define MAX_WORDS_IN_COMMAND 4
struct Command {
Word *words[4];
};
Command *parse(Game *g, const char *typed_command);
2025-01-12 20:15:25 -05:00
#endif