mirror of
https://github.com/nasa/trick.git
synced 2024-12-20 13:43:10 +00:00
16 lines
187 B
C
16 lines
187 B
C
#ifndef GRAPHICS_MODELS_H
|
|
#define GRAPHICS_MODELS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void Satellite_init(void);
|
|
void Satellite_display(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|