16 lines
573 B
TypeScript
16 lines
573 B
TypeScript
export const MIN_WIDTH = 240;
|
|
export const MIN_HEIGHT = 160;
|
|
export const PACKET_ID_HELLO = 0n;
|
|
export const PACKET_ID_SEND_FRAME = 1n;
|
|
export default class Constants {
|
|
public static MIN_WIDTH: number = MIN_WIDTH;
|
|
public static MIN_HEIGHT: number = MIN_HEIGHT;
|
|
public static PACKET_ID_HELLO: bigint = PACKET_ID_HELLO;
|
|
public static PACKET_ID_SEND_FRAME: bigint = PACKET_ID_SEND_FRAME;
|
|
|
|
};
|
|
Constants.MIN_WIDTH = MIN_WIDTH;
|
|
Constants.MIN_HEIGHT = MIN_HEIGHT;
|
|
Constants.PACKET_ID_HELLO = PACKET_ID_HELLO;
|
|
Constants.PACKET_ID_SEND_FRAME = PACKET_ID_SEND_FRAME;
|