Crossfire Server, Branch 1.12  R12190
face.h
Go to the documentation of this file.
00001 /*
00002  * static char *rcsid_face_h =
00003  *   "$Id: face.h 11578 2009-02-23 22:02:27Z lalo $";
00004  */
00005 
00006 /*
00007     CrossFire, A Multiplayer game for X-windows
00008 
00009     Copyright (C) 1994 Mark Wedel
00010     Copyright (C) 1992 Frank Tore Johansen
00011 
00012     This program is free software; you can redistribute it and/or modify
00013     it under the terms of the GNU General Public License as published by
00014     the Free Software Foundation; either version 2 of the License, or
00015     (at your option) any later version.
00016 
00017     This program is distributed in the hope that it will be useful,
00018     but WITHOUT ANY WARRANTY; without even the implied warranty of
00019     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00020     GNU General Public License for more details.
00021 
00022     You should have received a copy of the GNU General Public License
00023     along with this program; if not, write to the Free Software
00024     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
00025 
00026     The author can be reached via e-mail to mark@pyramid.com
00027 */
00028 
00034 #ifndef FACE_H
00035 #define FACE_H
00036 
00042 typedef struct new_face_struct {
00043     uint16 number;           
00045     uint8 visibility;
00046     uint8 magicmap;          
00047     uint16 smoothface;       
00048     const char *name;        
00049 } New_Face;
00050 
00054 typedef struct animations_struct {
00055     const char *name;       
00056     uint8 num_animations;   
00057     uint8 facings;          
00058     uint16 num;             
00059     Fontindex *faces;       
00060 } Animations;
00061 
00062 #endif /* FACE_H */