19 lines
190 B
C
19 lines
190 B
C
|
#ifndef _FOG_H_
|
||
|
#define _FOG_H_
|
||
|
|
||
|
#include "uiuc_aircraft.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
extern double Simtime;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
void uiuc_fog();
|
||
|
|
||
|
#endif // _FOG_H_
|