26 lines
500 B
C
26 lines
500 B
C
/**************************************************************************
|
|
* limits.h -- program wide limits
|
|
*
|
|
* Written by Curtis Olson, started May 1997.
|
|
*
|
|
* $Id$
|
|
* (Log is kept at end of this file)
|
|
**************************************************************************/
|
|
|
|
|
|
#ifndef LIMITS_H
|
|
#define LIMITS_H
|
|
|
|
|
|
/* Maximum number of engines for a single aircraft */
|
|
#define MAX_ENGINES 10
|
|
|
|
|
|
#endif LIMITS_H
|
|
|
|
|
|
/* $Log$
|
|
/* Revision 1.1 1997/05/16 16:08:00 curt
|
|
/* Initial revision.
|
|
/*
|
|
*/
|