Davide Tantillo 93c56d08d0 c3 backup
2025-11-03 15:16:29 +01:00

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;
}