#ifndef __GENDER_H__ #define __GENDER_H__ #include #include "assert.h" typedef u8 Gender; enum { /* 00 */ GENDER_MALE, /* 01 */ GENDER_FEMALE, // The gender is based on the gender of the leader. /* 02 */ GENDER_LEADER, }; ASSERT_SIZE(Gender, 1); #endif // __GENDER_H__