mirror of
https://github.com/jwetzell/psn-js.git
synced 2026-08-07 08:23:47 +00:00
6 lines
157 B
TypeScript
6 lines
157 B
TypeScript
export class Constants {
|
|
static readonly PACKET_HEADER_SIZE = 16;
|
|
static readonly MAX_UDP_PACKET_SIZE = 1500;
|
|
static readonly CHUNK_HEADER_SIZE = 4;
|
|
}
|