Cosmos/source2/Kernel/System/Cosmos.System/Console.cs
2010-08-15 08:22:39 +00:00

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) {
}
}
}