中文
Appearance
Contract.Exescute(...args)
Contract
执行函数。
any
void
class TestRequest extends Contract{ Exescute(msg: string): void { Debug.Log("client send :: ", msg); } Receive(msg: string): void { Debug.Log("client receive :: ", msg); } }