morrowind-more-attentive-gu.../MWSE/mods/celediel/MoreAttentiveGuards/interop.lua
Lilian Jónsdóttir 66353bfaff extremely basic interop module
for now only exposes guard following player
2020-09-07 16:24:57 -07:00

12 lines
153 B
Lua

local this = {}
local guard
this.setGuardFollower = function(g)
guard = g
end
this.getGuardFollower = function()
return guard
end
return this