voile/Voile/VoileRunnable.cs
2026-01-12 22:51:27 +01:00

14 lines
194 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Voile
{
internal interface VoileRunnable
{
void Run();
}
}