File: delay.h

package info (click to toggle)
crawl 1%3A4.0.0beta26-8
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 5,664 kB
  • ctags: 5,213
  • sloc: cpp: 103,500; perl: 233; makefile: 65; sh: 11
file content (19 lines) | stat: -rw-r--r-- 434 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 *  File:       delay.h
 *  Summary:    Functions for handling multi-turn actions.
 *  
 *  Change History (most recent first):
 *
 *               <1>    09/09/01        BWR            Created
 */

#ifndef DELAY_H
#define DELAY_H

void start_delay( int type, int turns, int parm1 = 0, int parm2 = 0 );
void stop_delay( void ); 
bool you_are_delayed( void ); 
int  current_delay_action( void ); 
void handle_delay( void );

#endif