Skip to content

Instantly share code, notes, and snippets.

@Kwame0
Kwame0 / SocialEngine.ts
Created June 6, 2020 15:50
a very messy scene
const Colyseus = require('colyseus.js')
const Store = require('electron-store');
const store = new Store();
var client = new Colyseus.Client('ws://localhost:2567');
function round(value, precision) {
var multiplier = Math.pow(10, precision || 0);
return Math.round(value * multiplier) / multiplier;
}