Starting on screen impl

This commit is contained in:
Michal Moskal
2017-07-05 13:06:58 +01:00
parent 7671a75dbc
commit 02d8cf7056
7 changed files with 105 additions and 2 deletions

11
libs/core/screen.ts Normal file
View File

@ -0,0 +1,11 @@
namespace screen {
//% shim=screen::_drawLine
function _drawLine(p0: uint32, p1: uint32, mode: Draw): void {}
//% shim=screen::_drawRect
function _drawRect(p0: uint32, p1: uint32, mode: Draw): void {}
//% shim=screen::_drawEllipse
function _drawEllipse(p0: uint32, p1: uint32, mode: Draw): void {}
}