Make nq and qw use the new entity state struct.

This isn't really the best solution, but it does get things being shared
with the minimum of fuss.
This commit is contained in:
Bill Currie 2012-07-01 11:36:47 +09:00
parent dea2f48477
commit 80bc0e9fb8
11 changed files with 30 additions and 28 deletions

View file

@ -62,6 +62,8 @@ typedef struct entity_state_s {
typedef struct {
entity_state_t * const baseline;
entity_state_t * const * const frame;
const int num_frames;
const int num_entities;
} entstates_t;
extern entstates_t nq_entstates;