Arch
Arch copied to clipboard
Plugins and Application root
Bevy has something called plugins which go something like this...
var app = new Application();
app.AddPlugin(MyPlugin);
app.Run();
public void MyPlugin(Application app)
{
app.AddSystem(...);
}