pxt-calliope/sim/visuals/boardview.ts

9 lines
260 B
TypeScript
Raw Normal View History

2016-09-13 18:59:34 +02:00
namespace pxsim.visuals {
mkBoardView = (opts: BoardViewOptions): BoardView => {
return new visuals.MicrobitBoardSvg({
runtime: runtime,
theme: visuals.randomTheme(),
wireframe: opts.wireframe
});
2016-09-13 18:59:34 +02:00
}
}