This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using Steamworks; | |
public class SteamworksNetEmu | |
{ | |
private int _latency = 0; | |
private int _packetloss = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
var http = require('http'); | |
var fs = require('fs'); | |
var WebSocketServer = require('websocket').server; | |
var clients = []; | |
var next_client = 0; | |
var mainHtml = (function () { | |
var f; |