Skip to content

Instantly share code, notes, and snippets.

@JanHolger
Created October 21, 2019 18:38
Show Gist options
  • Save JanHolger/c546ba477dcf97d360869352126a4649 to your computer and use it in GitHub Desktop.
Save JanHolger/c546ba477dcf97d360869352126a4649 to your computer and use it in GitHub Desktop.
Onset Function Export example
local common
AddEvent("OnPackageStart", function()
common = ImportPackage("commonpackage")
common.SomeFunction()
end)
function SomeFunction()
print("Hello World")
end
AddFunctionExport("SomeFunction", SomeFunction)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment