itisnajim / SocketIOUnity

A Wrapper for socket.io-client-csharp to work with Unity.
MIT License
379 stars 65 forks source link

error CS0118: 'SocketIO' is a namespace but is used like a type #89

Closed Mathiaszero closed 2 months ago

Mathiaszero commented 2 months ago
using System;
using System.Threading.Tasks;
using System.Text;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Connection: MonoBehaviour
{
    void Start()
    {
        var client = new SocketIO("http://localhost:11000/");
    }

    void Update()
    {

    }
}

How can I resolve?