mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 21:08:51 +00:00
26 lines
566 B
C#
26 lines
566 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.System {
|
|
public class Console {
|
|
// Dont expose these. See notes about mixing in .html
|
|
protected int mX = 0;
|
|
protected int mY = 0;
|
|
|
|
protected Hardware.TextScreen mText = Hardware.Global.TextScreen;
|
|
|
|
public void Clear() {
|
|
mText.Clear();
|
|
}
|
|
|
|
public void WriteLine(string aText) {
|
|
|
|
}
|
|
|
|
public void Write(string aText) {
|
|
}
|
|
|
|
}
|
|
}
|