2015-02-02 22:05:03 +00:00
|
|
|
/*
|
|
|
|
* Author: Garth 'L-H' de Wet
|
|
|
|
* Initialises the parachute system.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-02-02 20:52:08 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
ADDON = false;
|
|
|
|
|
|
|
|
PREP(doLanding);
|
2015-04-17 09:02:01 +00:00
|
|
|
PREP(handleInfoDisplayChanged);
|
2015-02-02 20:52:08 +00:00
|
|
|
PREP(hideAltimeter);
|
|
|
|
PREP(onEachFrame);
|
|
|
|
PREP(showAltimeter);
|
2015-05-19 11:45:28 +00:00
|
|
|
PREP(cutParachute);
|
2015-05-19 16:17:10 +00:00
|
|
|
PREP(checkCutParachute);
|
|
|
|
PREP(storeParachute);
|
2015-02-02 20:52:08 +00:00
|
|
|
ADDON = true;
|