This file contains 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 GameSparks; | |
using System; | |
/// <summary> | |
/// Custom wrapper around the NativeWebSocket from https://github.com/endel/NativeWebSocket | |
/// Intended to fix the issue of the GameSparks SDK not supporting .net4.x | |
/// </summary> | |
public class CustomGamesparksSocket : IGameSparksWebSocket | |
{ | |
private NativeWebSocket.WebSocket socket = null; |