1
0
Fork 0
mirror of https://github.com/demostf/demo.js synced 2026-06-04 00:54:14 +02:00

encoder for synctick message

This commit is contained in:
Robin Appelman 2017-09-24 17:57:42 +02:00
commit 00a3b82d4a

View file

@ -12,6 +12,6 @@ export const SyncTickHandler: MessageHandler<SyncTickMessage> = {
}; };
}, },
encodeMessage: (message, stream) => { encodeMessage: (message, stream) => {
throw new Error('not implemented'); stream.writeUint32(message.tick);
} }
}; };