Arch icon indicating copy to clipboard operation
Arch copied to clipboard

Plugins and Application root

Open Shadowblitz16 opened this issue 1 year ago • 3 comments

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(...);
}


Shadowblitz16 avatar Sep 09 '24 01:09 Shadowblitz16