Unified structure specifying gender information ***/
| 299 | |
| 300 | /*** Unified structure specifying gender information ***/ |
| 301 | struct Gender { |
| 302 | const char *adj; /* male/female/neuter */ |
| 303 | const char *he; /* he/she/it */ |
| 304 | const char *him; /* him/her/it */ |
| 305 | const char *his; /* his/her/its */ |
| 306 | const char *filecode; /* file code */ |
| 307 | short allow; /* equivalent ROLE_ mask */ |
| 308 | }; |
| 309 | #define ROLE_GENDERS 2 /* number of permitted player genders |
| 310 | increment to 3 if you allow neuter roles */ |
| 311 |
nothing calls this directly
no outgoing calls
no test coverage detected