Skip to content

Instantly share code, notes, and snippets.

View janick187's full-sized avatar

Janick janick187

  • Zurich, Switzerland
View GitHub Profile
@amimaro
amimaro / UnityHttpListener.cs
Last active December 18, 2023 12:31
Listen for Http Requests with Unity
using UnityEngine;
using UnityEngine.Networking;
using System;
using System.IO;
using System.Net;
using System.Threading;
public class UnityHttpListener : MonoBehaviour
{