usecrate::shared::example_builder::ExampleBuilder;usecrate::shared::pos::Pos;modshared{pubmodexample_builder;pubmodpos;}fnmain(){// Here we use a Pos as the representation of a point and () as the navigable type, meaning that
// all positions are walkable. We override the default params to run 10 actors.
ExampleBuilder::<Pos, ()>::default().with_n_entities(10).drawing_app().run();}