feyris-tan 897c5e95ca
Some checks failed
🚀 Pack skyscraper8 / make-zip (push) Failing after 1m19s
Dump packets from a SimminRadiomidun-styled stream.
2025-10-20 22:08:47 +02:00

14 lines
266 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace skyscraper8.Skyscraper.Scraper
{
public interface ISubTsHandler
{
public void OnSubTsPacket(object identifier, byte[] packet);
}
}