Changeset 34 for ttyvaders/trunk/src
- Timestamp:
- Dec 22, 2002, 7:40:36 PM (18 years ago)
- Location:
- ttyvaders/trunk/src
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
ttyvaders/trunk/src/Makefile.am
r20 r34 21 21 aliens.c \ 22 22 bonus.c \ 23 ceo.c \ 23 24 common.h \ 24 25 explosions.c \ -
ttyvaders/trunk/src/common.h
r24 r34 163 163 void update_explosions( game *g, explosions *ex ); 164 164 165 void ceo_alert( void ); 166 -
ttyvaders/trunk/src/main.c
r24 r34 1 1 /* 2 * ttyvaders - a tty based shoot'em'up 3 * Copyright (C) 2002 Sam Hocevar <sam@zoy.org> 2 * ttyvaders Textmode shoot'em up 3 * Copyright (c) 2002 Sam Hocevar <sam@zoy.org> 4 * All Rights Reserved 5 * 6 * $Id tarass 4 7 * 5 8 * This program is free software; you can redistribute it and/or modify 6 9 * it under the terms of the GNU General Public License as published by 7 * the Free Software Foundation; either version 1, or (at your option)8 * any later version.10 * the Free Software Foundation; either version 2 of the License, or 11 * (at your option) any later version. 9 12 * 10 13 * This program is distributed in the hope that it will be useful, … … 16 19 * along with this program; if not, write to the Free Software 17 20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 18 *19 21 */ 20 22 … … 94 96 case 'p': 95 97 poz = !poz; 98 break; 99 case '\t': 100 ceo_alert(); 101 poz = 1; 96 102 break; 97 103 case 's':
Note: See TracChangeset
for help on using the changeset viewer.