Datatype definition for command word types.

This commit is contained in:
Jason S. Ninneman 2017-08-02 19:22:52 -07:00
parent 1966264715
commit 0d3393ebee
2 changed files with 4 additions and 4 deletions

View file

@ -87,7 +87,7 @@ enum termination {endgame, quitgame, scoregame};
enum speechpart {unknown, intransitive, transitive};
enum wordtype {NO_WORD_TYPE, MOTION, OBJECT, ACTION, NUMERIC};
typedef enum {NO_WORD_TYPE, MOTION, OBJECT, ACTION, NUMERIC} word_type_t;
typedef enum scorebonus {none, splatter, defeat, victory} score_t;
@ -188,8 +188,8 @@ struct command_t {
enum speechpart part;
vocab_t id1;
vocab_t id2;
enum wordtype type1;
enum wordtype type2;
word_type_t type1;
word_type_t type2;
verb_t verb;
obj_t obj;
};