diff --git a/client/impl/test.impl.lua b/client/impl/test.impl.lua index cb0a2e9..1139733 100644 --- a/client/impl/test.impl.lua +++ b/client/impl/test.impl.lua @@ -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 \ No newline at end of file +end diff --git a/server/impl/test.impl.lua b/server/impl/test.impl.lua index 207f3ac..f2a5234 100644 --- a/server/impl/test.impl.lua +++ b/server/impl/test.impl.lua @@ -1,5 +1,6 @@ +---@class TestImpl : Impl local Impl = NewImpl("Test") function Impl:OnReady() main:LogInfo("%s ready", self:GetName()) -end \ No newline at end of file +end