16774Srrh /*
221225Sdist  * Copyright (c) 1980 Regents of the University of California.
3*33487Sbostic  * All rights reserved.
421225Sdist  *
5*33487Sbostic  * Redistribution and use in source and binary forms are permitted
6*33487Sbostic  * provided that this notice is preserved and that due credit is given
7*33487Sbostic  * to the University of California at Berkeley. The name of the University
8*33487Sbostic  * may not be used to endorse or promote products derived from this
9*33487Sbostic  * software without specific prior written permission. This software
10*33487Sbostic  * is provided ``as is'' without express or implied warranty.
11*33487Sbostic  *
12*33487Sbostic  *	@(#)tutor.h	5.2 (Berkeley) 02/16/88
136774Srrh  */
146774Srrh 
156774Srrh struct situatn  {
166774Srrh 	int	brd[26];
176774Srrh 	int	roll1;
186774Srrh 	int	roll2;
196774Srrh 	int	mp[4];
206774Srrh 	int	mg[4];
216774Srrh 	int	new1;
226774Srrh 	int	new2;
236774Srrh 	char	*(*com[8]);
246774Srrh };
25