xref: /dflybsd-src/games/ching/include/ching.h (revision d808242906dd621413f6e34f9812f1dd1463041a)
1*d8082429SAaron LI /*	$NetBSD: ching.h,v 1.1 2005/06/30 13:30:33 perry Exp $	*/
2*d8082429SAaron LI 
3*d8082429SAaron LI /*
4*d8082429SAaron LI  * Copyright (c) 1988, 1993
5*d8082429SAaron LI  *	The Regents of the University of California.  All rights reserved.
6*d8082429SAaron LI  *
7*d8082429SAaron LI  * This code is derived from software contributed to Berkeley by
8*d8082429SAaron LI  * Guy Harris.
9*d8082429SAaron LI  *
10*d8082429SAaron LI  * Redistribution and use in source and binary forms, with or without
11*d8082429SAaron LI  * modification, are permitted provided that the following conditions
12*d8082429SAaron LI  * are met:
13*d8082429SAaron LI  * 1. Redistributions of source code must retain the above copyright
14*d8082429SAaron LI  *    notice, this list of conditions and the following disclaimer.
15*d8082429SAaron LI  * 2. Redistributions in binary form must reproduce the above copyright
16*d8082429SAaron LI  *    notice, this list of conditions and the following disclaimer in the
17*d8082429SAaron LI  *    documentation and/or other materials provided with the distribution.
18*d8082429SAaron LI  * 3. All advertising materials mentioning features or use of this software
19*d8082429SAaron LI  *    must display the following acknowledgement:
20*d8082429SAaron LI  *	This product includes software developed by the University of
21*d8082429SAaron LI  *	California, Berkeley and its contributors.
22*d8082429SAaron LI  * 4. Neither the name of the University nor the names of its contributors
23*d8082429SAaron LI  *    may be used to endorse or promote products derived from this software
24*d8082429SAaron LI  *    without specific prior written permission.
25*d8082429SAaron LI  *
26*d8082429SAaron LI  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27*d8082429SAaron LI  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28*d8082429SAaron LI  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29*d8082429SAaron LI  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30*d8082429SAaron LI  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31*d8082429SAaron LI  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32*d8082429SAaron LI  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33*d8082429SAaron LI  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34*d8082429SAaron LI  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35*d8082429SAaron LI  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36*d8082429SAaron LI  * SUCH DAMAGE.
37*d8082429SAaron LI  *
38*d8082429SAaron LI  *	@(#)ching.h	8.1 (Berkeley) 5/31/93
39*d8082429SAaron LI  */
40*d8082429SAaron LI 
41*d8082429SAaron LI #define OYIN	6		/* yin (broken) moving to yang (solid) */
42*d8082429SAaron LI #define YYANG	7		/* yang (solid) */
43*d8082429SAaron LI #define YYIN	8		/* yin (broken) */
44*d8082429SAaron LI #define OYANG	9		/* yang (solid) moving to yin (broken) */
45