Websocket transport should be namespaced (#542)

This commit is contained in:
Paul Pacheco 2019-03-04 01:42:17 -06:00 committed by vis2k
parent 9a0af7cb55
commit 70cfe9e8ce
4 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@
using Ninja.WebSockets; using Ninja.WebSockets;
using UnityEngine; using UnityEngine;
namespace Mirror namespace Mirror.Websocket
{ {
public class Client public class Client

View File

@ -13,7 +13,7 @@
using Ninja.WebSockets; using Ninja.WebSockets;
using UnityEngine; using UnityEngine;
namespace Mirror namespace Mirror.Websocket
{ {
// this is the client implementation used by browsers // this is the client implementation used by browsers
public class Client public class Client

View File

@ -11,7 +11,7 @@
using Ninja.WebSockets; using Ninja.WebSockets;
using UnityEngine; using UnityEngine;
namespace Mirror namespace Mirror.Websocket
{ {
public class Server public class Server
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using UnityEngine; using UnityEngine;
namespace Mirror namespace Mirror.Websocket
{ {
public class WebsocketTransport : Transport public class WebsocketTransport : Transport
{ {