From 61cdbb3b7a6068b48df3118c053c46b6952e21c4 Mon Sep 17 00:00:00 2001 From: LORAX Date: Fri, 31 May 2024 05:18:24 +0700 Subject: [PATCH] update --- client/impl/test.impl.lua | 3 ++- server/impl/test.impl.lua | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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