This commit is contained in:
LotP1
2024-12-26 19:54:02 +01:00
parent 1bac6ab19e
commit 8c0a82bb6e
5 changed files with 63 additions and 58 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ryujinx.BuildValidationTasks
{
public interface ValidationTask
{
public static bool Execute(string projectPath) { return true; }
}
}