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

9 lines
177 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