12 lines
153 B
Lua
12 lines
153 B
Lua
local this = {}
|
|
|
|
local guard
|
|
this.setGuardFollower = function(g)
|
|
guard = g
|
|
end
|
|
|
|
this.getGuardFollower = function()
|
|
return guard
|
|
end
|
|
|
|
return this
|