ro-table/Assets/Resources/Script/FrameWork/Proxy/Service/manual/ServiceClientPrivateChatIOProxy.txt
2025-06-04 05:12:01 +08:00

14 lines
581 B
Plaintext

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