| 32 | typeof message['data'] === 'object'; |
| 33 | |
| 34 | export interface IMessageData { |
| 35 | readonly data: any; // The data sent with the message, an object with unknown content. |
| 36 | readonly sender: String; |
| 37 | getData(): any; |
| 38 | getSender(): string; |
| 39 | } |
| 40 | /** |
| 41 | * The data bound to a message name. |
| 42 | * @category Multiplayer |
no outgoing calls
no test coverage detected