aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ShiftOS/ShiftOS/SystemContext.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/ShiftOS/ShiftOS/SystemContext.cs b/ShiftOS/ShiftOS/SystemContext.cs
index f6d4c83..2dc70da 100644
--- a/ShiftOS/ShiftOS/SystemContext.cs
+++ b/ShiftOS/ShiftOS/SystemContext.cs
@@ -10,12 +10,18 @@ namespace ShiftOS
public class SystemContext : IDisposable
{
private Desktop _desktop = null;
+ private int _codepoints = 0;
public void Dispose()
{
_desktop = null;
}
+ public int GetCodepoints()
+ {
+ return this._codepoints;
+ }
+
public void Initialize()
{
// We can't initialize the game twice.