diff options
Diffstat (limited to 'Library/SDK/Modules/Strawberry.DisplayRaw.js')
-rw-r--r-- | Library/SDK/Modules/Strawberry.DisplayRaw.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Library/SDK/Modules/Strawberry.DisplayRaw.js b/Library/SDK/Modules/Strawberry.DisplayRaw.js new file mode 100644 index 0000000..5dd6860 --- /dev/null +++ b/Library/SDK/Modules/Strawberry.DisplayRaw.js @@ -0,0 +1,10 @@ +module.exports = { + Write: (text, posX, posY) => { + process.stdout.cursorTo(posX, posY); + process.stdout.write(text); + }, + ClearLine: (posY) => { + process.stdout.cursorTo(0, posY); + process.stdout.clearLine(); + } +}
\ No newline at end of file |