feyris-tan ef86554f9a Import
2025-05-12 22:09:16 +02:00

12 lines
206 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace skyscraper2.TsDuckInterface
{
abstract class TspOutput
{
public abstract override string ToString();
}
}