12 lines
189 B
Lua
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 |