Files
2026-07-07 15:23:39 +08:00

21 lines
453 B
Bash

if ! type "include" > /dev/null 2>&1; then
include() {
. "$(cd "$(dirname "$1")" && pwd)/${2}";
};
fi
include "${BASH_SOURCE[0]}" ../pragma_once.bash
if ! pragma_once ${BASH_SOURCE[0]}; then return 0; fi
include "${BASH_SOURCE[0]}" ./bge.bash
include "${BASH_SOURCE[0]}" ./link.bash
include "${BASH_SOURCE[0]}" ../base/export.bash
# shellcheck source=./link.bash
# shellcheck source=./bge.bash
false && source ../base/export.bash
return 0