pxt-calliope/sim/visuals/boardview.ts

10 lines
293 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(),
disableTilt: false,
wireframe: opts.wireframe,
});
2016-09-13 18:59:34 +02:00
}
}