update
Some checks failed
AutoRelease / release (push) Failing after 3m51s

This commit is contained in:
LORAX 2024-05-31 05:18:24 +07:00
parent c18e606d10
commit 61cdbb3b7a
2 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,4 @@
---@class TestImpl : Impl
local Impl = NewImpl("Test")
function Impl:Init()
@ -15,4 +16,4 @@ end
function Impl:Add(amount, amount2)
self.testVar = self.testVar + amount + amount2
return self.testVar
end
end

View File

@ -1,5 +1,6 @@
---@class TestImpl : Impl
local Impl = NewImpl("Test")
function Impl:OnReady()
main:LogInfo("%s ready", self:GetName())
end
end