16 lines
352 B
C
16 lines
352 B
C
|
#ifndef _INITIALIZEMAPS_H_
|
||
|
#define _INITIALIZEMAPS_H_
|
||
|
|
||
|
#include "uiuc_aircraft.h"
|
||
|
|
||
|
void uiuc_initializemaps();
|
||
|
|
||
|
/* split this routine up into smaller chunks so it can be digested by
|
||
|
average machines */
|
||
|
void uiuc_initializemaps1();
|
||
|
void uiuc_initializemaps2();
|
||
|
void uiuc_initializemaps3();
|
||
|
void uiuc_initializemaps4();
|
||
|
|
||
|
#endif // _INITIALIZEMAPS_H_
|