mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
21 lines
339 B
Plaintext
21 lines
339 B
Plaintext
#include "script_component.hpp"
|
|
|
|
ADDON = false;
|
|
|
|
PREP(handleCamera);
|
|
PREP(handleInterface);
|
|
PREP(handleKilled);
|
|
PREP(handleMouse);
|
|
PREP(handleRespawn);
|
|
PREP(handleTree);
|
|
PREP(moduleSpectator);
|
|
PREP(setSpectator);
|
|
PREP(updateUnits);
|
|
PREP(updateView);
|
|
|
|
GVAR(unitList) = [];
|
|
GVAR(unitBlacklist) = [];
|
|
GVAR(unitWhitelist) = [];
|
|
|
|
ADDON = true;
|