thrive/action.h

32 lines
525 B
C
Raw Permalink Normal View History

2025-01-16 20:15:50 -05:00
#ifndef _FD_ACTION_
#define _FD_ACTION_
typedef struct Action Action;
typedef struct Actions Actions;
#include "game.h"
#include "word.h"
#include "predicate.h"
2025-01-18 19:34:45 -05:00
#include "effect.h"
2025-01-16 20:15:50 -05:00
struct Action {
Word *words[4];
int words_count;
Predicate *predicates[10];
int predicates_count;
int priority;
char *description;
2025-01-18 19:34:45 -05:00
Effect *effects[10];
int effects_count;
2025-01-16 20:15:50 -05:00
};
struct Actions {
Action actions[1000];
int count;
};
void game_load_actions(Game *g);
2025-01-19 09:25:55 -05:00
Action *find_action(Game *g, const char *command);
2025-01-16 20:15:50 -05:00
#endif