Cosmos/source2/Kernel/System/Cosmos.System/Console.cs
kudzu_cp f3e59ed5c7
2010-08-15 08:28:52 +00:00

29 lines
649 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();
mX = 0;
mY = 0;
mText.SetCursorPos(mX, mY);
}
public void WriteLine(string aText) {
}
public void Write(string aText) {
}
}
}