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

15 lines
255 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace skyscraper2.TsDuckInterface.Outputs
{
class DropOutput : TspOutput
{
public override string ToString()
{
return "drop";
}
}
}