Changeset 69 for libcaca/trunk/src/common.h
- Timestamp:
- Feb 9, 2003, 12:17:40 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/src/common.h
r63 r69 4 4 * All Rights Reserved 5 5 * 6 * $Id: common.h,v 1.1 5 2002/12/23 16:21:38sam Exp $6 * $Id: common.h,v 1.16 2003/02/09 11:17:40 sam Exp $ 7 7 * 8 8 * This program is free software; you can redistribute it and/or modify … … 144 144 { 145 145 int w, h; 146 int x, y; 147 int frame; 148 149 } box; 150 151 typedef struct 152 { 153 int w, h; 146 154 147 155 starfield *sf; … … 183 191 184 192 /* 193 * From box.c 194 */ 195 box * create_box( game *g, int x, int y, int w, int h ); 196 void draw_box( game *g, box *b ); 197 void free_box( box *b ); 198 199 /* 185 200 * From ceo.c 186 201 */ … … 221 236 * From overlay.c 222 237 */ 223 void draw_ overlay( game *g );238 void draw_status( game *g ); 224 239 225 240 /*
Note: See TracChangeset
for help on using the changeset viewer.