mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
32 lines
535 B
Plaintext
32 lines
535 B
Plaintext
#include "script_component.hpp"
|
|
|
|
ADDON = false;
|
|
|
|
// effects
|
|
PREP(applyDirtEffect);
|
|
PREP(applyDustEffect);
|
|
PREP(applyGlassesEffect);
|
|
PREP(applyRainEffect);
|
|
PREP(applyRotorWashEffect);
|
|
PREP(removeDirtEffect);
|
|
PREP(removeDustEffect);
|
|
PREP(removeGlassesEffect);
|
|
PREP(removeRainEffect);
|
|
|
|
// public
|
|
PREP(externalCamera);
|
|
PREP(isDivingGoggles);
|
|
PREP(isGogglesVisible);
|
|
PREP(isInRotorWash);
|
|
|
|
// general
|
|
PREP(clearGlasses);
|
|
PREP(getExplosionIndex);
|
|
|
|
// eventhandlers
|
|
PREP(handleExplosion);
|
|
PREP(handleFired);
|
|
PREP(handleKilled);
|
|
|
|
ADDON = true;
|