forked from Bastion/Bastion
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
434 B
21 lines
434 B
local Tinkr, Bastion = ...
|
|
|
|
local Player = Bastion.Globals.UnitManager:Get('player')
|
|
|
|
Bastion:RegisterLibrary(Bastion.Library:New({
|
|
name = 'Dependable',
|
|
exports = {
|
|
default = function()
|
|
local Dependable = {}
|
|
|
|
Dependable.__index = Dependable
|
|
|
|
function Dependable:Test(a)
|
|
print(a)
|
|
end
|
|
|
|
return Dependable
|
|
end,
|
|
Test = 5
|
|
}
|
|
}))
|
|
|