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.
22 lines
426 B
22 lines
426 B
1 year ago
|
local Tinkr, Bastion = ...
|
||
|
|
||
|
local Player = Bastion.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
|
||
|
}
|
||
|
}))
|