Skip to content

Instantly share code, notes, and snippets.

View FUTC-Coding's full-sized avatar
:shipit:

FUTC-Coding

:shipit:
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
{