lr_boilerplate/server/impl/test.impl.lua

7 lines
127 B
Lua
Raw Permalink Normal View History

2024-05-31 05:18:24 +07:00
---@class TestImpl : Impl
2023-12-05 13:55:38 +07:00
local Impl = NewImpl("Test")
function Impl:OnReady()
main:LogInfo("%s ready", self:GetName())
2024-05-31 05:18:24 +07:00
end