mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
12 lines
262 B
C#
12 lines
262 B
C#
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);
|
|
}
|