28 lines
1.3 KiB
C
28 lines
1.3 KiB
C
/*
|
|
* touchingtypes.h --
|
|
* Header, types TouchingTypes() function.
|
|
* (TouchingTypes() returns mask of types touching a given point.)
|
|
*
|
|
* *********************************************************************
|
|
* * Copyright (C) 1985, 1990 Regents of the University of California. *
|
|
* * Permission to use, copy, modify, and distribute this *
|
|
* * software and its documentation for any purpose and without *
|
|
* * fee is hereby granted, provided that the above copyright *
|
|
* * notice appear in all copies. The University of California *
|
|
* * makes no representations about the suitability of this *
|
|
* * software for any purpose. It is provided "as is" without *
|
|
* * express or implied warranty. Export of this software outside *
|
|
* * of the United States of America may require an export license. *
|
|
* *********************************************************************
|
|
*
|
|
* rcsid $Header: /usr/cvsroot/magic-8.0/utils/touchingtypes.h,v 1.1.1.1 2008/02/03 20:43:50 tim Exp $
|
|
*/
|
|
|
|
#ifndef _TOUCHINGTYPES_H
|
|
#define _TOUCHINGTYPES_H
|
|
|
|
/* -------------------- Functions (exported by touching.c) ---------------- */
|
|
extern TileTypeBitMask TouchingTypes();
|
|
|
|
#endif /* _TOUCHINGTYPES_H */
|