1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
/* File: angband.h */
/* Main "Angband" header file */
#ifndef INCLUDED_ANGBAND_H
#define INCLUDED_ANGBAND_H
/*
* Copyright (c) 1989 James E. Wilson
*
* This software may be copied and distributed for educational, research, and
* not for profit purposes provided that this copyright and statement are
* included in all such copies.
*/
/*
* C++ guard.
*/
#ifdef __cplusplus
extern "C" {
#endif
/*
* First, include the low-level includes. Be sure to edit "h-config.h"
* to reflect any hardware, operating system, or compiler nuances.
*/
#include "h-basic.h"
/*
* Then, include the header files for the low-level code
*/
#include "z-util.h"
#include "z-virt.h"
#include "z-form.h"
#include "z-rand.h"
#include "z-term.h"
/*
* Include the "Angband" configuration header
*/
#include "config.h"
/*
* Now, include the define's, the type's, and the extern's
*/
#include "defines.h"
#include "types.h"
#include "externs.h"
#include "plots.h"
/***** Some copyright messages follow below *****/
/*
* Note that these copyright messages apply to an ancient version
* of Angband, as in, from pre-2.4.frog-knows days, and thus the
* reference to "5.0" is rather misleading...
*/
/*
* UNIX ANGBAND Version 5.0
*/
/* Original copyright message follows. */
/*
* ANGBAND Version 4.8 COPYRIGHT (c) Robert Alan Koeneke
*
* I lovingly dedicate this game to hackers and adventurers
* everywhere...
*
* Designer and Programmer:
* Robert Alan Koeneke
* University of Oklahoma
*
* Assistant Programmer:
* Jimmey Wayne Todd
* University of Oklahoma
*
* Assistant Programmer:
* Gary D. McAdoo
* University of Oklahoma
*
* UNIX Port:
* James E. Wilson
* UC Berkeley
* wilson@ernie.Berkeley.EDU
* ucbvax!ucbernie!wilson
*/
/*
* ANGBAND may be copied and modified freely as long as the above
* credits are retained. No one who-so-ever may sell or market
* this software in any form without the expressed written consent
* of the author Robert Alan Koeneke.
*/
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif
|