Source:NetHack 3.6.1/include/rect.h

From NetHackWiki
Jump to navigation Jump to search

Below is the full text to rect.h from the source code of NetHack 3.6.1. To link to a particular line, write [[Source:NetHack 3.6.1/include/rect.h#line123]], for example.

The NetHack General Public License applies to screenshots, source code and other content from NetHack.

This content was modified from the original NetHack source code distribution (by splitting up NetHack content between wiki pages, and possibly further editing). See the page history for a list of who changed it, and on what dates.

 /* NetHack 3.6	rect.h	$NHDT-Date: 1432512778 2015/05/25 00:12:58 $  $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ */
 /* Copyright (c) 1990 by Jean-Christophe Collet			  */
 /* NetHack may be freely redistributed.  See license for details. */
 
 #ifndef RECT_H
 #define RECT_H
 
 typedef struct nhrect {
     xchar lx, ly;
     xchar hx, hy;
 } NhRect;
 
 #endif /* RECT_H */