9e122eaf81
Compile a useful subset of FG as a shared library, and add two basic uses of this to exercise some Flightplan / RoutePath / navaid functions. The test framework can/will be expanded incrementally from here, this is just a starting point.
17 lines
299 B
C++
17 lines
299 B
C++
|
|
#include <Environment/precipitation_mgr.hxx>
|
|
|
|
FGPrecipitationMgr::FGPrecipitationMgr()
|
|
{
|
|
|
|
}
|
|
|
|
FGPrecipitationMgr::~FGPrecipitationMgr()
|
|
{
|
|
|
|
}
|
|
|
|
void FGPrecipitationMgr::bind () {}
|
|
void FGPrecipitationMgr::unbind () {}
|
|
void FGPrecipitationMgr::init () {}
|
|
void FGPrecipitationMgr::update (double dt) {}
|