| 743 | } |
| 744 | |
| 745 | void ReadGroupTrigger(CFILE *ifile, trigger *tp) { |
| 746 | tp->roomnum = cf_ReadShort(ifile); |
| 747 | tp->facenum = cf_ReadShort(ifile); |
| 748 | tp->flags = cf_ReadShort(ifile); |
| 749 | tp->activator = cf_ReadShort(ifile); |
| 750 | } |
| 751 | |
| 752 | // Loads a group from disk |
| 753 | group *LoadGroup(char *filename) { |
no test coverage detected