event.lua
local event = {}
function event.hello_event()
print("hello event from inside lua!")
end
function event.hello_event_again()
print("hello event again from inside lua!")
end
return event
event.lua
local event = {}
function event.hello_event()
print("hello event from inside lua!")
end
function event.hello_event_again()
print("hello event again from inside lua!")
end
return event