mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-13 02:28:44 +08:00
14 lines
505 B
TypeScript
14 lines
505 B
TypeScript
|
|
/** Represents statistics for the Multiplayer object.
|
|
* @see {@link https://www.construct.net/make-games/manuals/construct-3/scripting/scripting-reference/plugin-interfaces/multiplayer | IMultiplayerObjectType documentation } */
|
|
declare class MultiplayerStats
|
|
{
|
|
readonly outboundCount: number;
|
|
readonly outboundBandwidth: number;
|
|
readonly outboundDecompressedBandwidth: number;
|
|
|
|
readonly inboundCount: number;
|
|
readonly inboundBandwidth: number;
|
|
readonly inboundDecompressedBandwidth: number;
|
|
}
|