2025-06-04 05:12:01 +08:00

14 lines
471 B
Plaintext

autoImport('ServiceSceneChatAutoProxy')
ServiceSceneChatProxy = class('ServiceSceneChatProxy', ServiceSceneChatAutoProxy)
ServiceSceneChatProxy.Instance = nil
ServiceSceneChatProxy.NAME = 'ServiceSceneChatProxy'
function ServiceSceneChatProxy:ctor(proxyName)
if ServiceSceneChatProxy.Instance == nil then
self.proxyName = proxyName or ServiceSceneChatProxy.NAME
ServiceProxy.ctor(self, self.proxyName)
self:Init()
ServiceSceneChatProxy.Instance = self
end
end