Latest UDP message info and parsing tools

This commit is contained in:
Casper Warden
2017-11-24 03:32:28 +00:00
parent d2ea9ce40b
commit 0325c51f40
10 changed files with 368 additions and 15 deletions

View File

@@ -1,8 +1,10 @@
import {MessageFlags} from '../enums/MessageFlags';
export class Packet
export interface Packet
{
name: string;
flags: MessageFlags;
id: number;
getSize(): number;
}