Build Box2D with BuildTool

This commit is contained in:
Simon Lübeß
2026-04-11 17:28:04 +02:00
parent 3fd5452146
commit aabcd5f9b2
10 changed files with 243 additions and 155 deletions
+11
View File
@@ -0,0 +1,11 @@
namespace BuildTool;
abstract class Module
{
public abstract string Name { get; }
public List<Module> Dependencies { get; } = new();
public abstract List<Type> DependencyTypes { get; }
public abstract Task<bool> Run(BuildInfo buildInfo);
}