2016-09-13 18:59:34 +02:00
|
|
|
namespace pxsim.visuals {
|
2016-09-26 22:26:43 +02:00
|
|
|
mkBoardView = (opts: BoardViewOptions): BoardView => {
|
|
|
|
return new visuals.MicrobitBoardSvg({
|
|
|
|
runtime: runtime,
|
|
|
|
theme: visuals.randomTheme(),
|
2020-08-19 22:03:58 +02:00
|
|
|
wireframe: opts.wireframe
|
2016-09-26 22:26:43 +02:00
|
|
|
});
|
2016-09-13 18:59:34 +02:00
|
|
|
}
|
2020-08-19 22:03:58 +02:00
|
|
|
}
|