lr_boilerplate/client/impl/test.impl.lua
2023-12-05 13:55:38 +07:00

12 lines
189 B
Lua

local Impl = NewImpl("Test")
function Impl:Init()
main:LogInfo("%s initialized", self:GetName())
self.data = {
test = "test"
}
end
function Impl:GetData()
return self.data
end