mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
Build Box2D with BuildTool
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user