lr_boilerplate/client/impl/newbie.impl.lua
2023-12-05 15:00:07 +07:00

11 lines
179 B
Lua

local Impl = NewImpl("Newbie")
function Impl:Init()
main:LogInfo("%s initialized", self:GetName())
end
function Impl:OnReady()
main:LogInfo("%s ready", self:GetName())
end