Ein Projekt das es ermöglicht Beerpong über das Internet von zwei unabhängigen positionen aus zu spielen. Entstehung im Rahmen einer Praktikumsaufgabe im Fach Interaktion.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 200B

123456789101112131415
  1. // Load modules
  2. var Stringify = require('./stringify');
  3. var Parse = require('./parse');
  4. // Declare internals
  5. var internals = {};
  6. module.exports = {
  7. stringify: Stringify,
  8. parse: Parse
  9. };