Davide Tantillo 50e8104e7c c3 backup
2025-10-14 12:08:58 +02: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;
}