From 563c26e43bba94849426c92aa9f0756e8bdc9ed4 Mon Sep 17 00:00:00 2001 From: Alkaline Thunder Date: Fri, 28 Dec 2018 00:24:06 -0500 Subject: [PATCH] Add Codepoints to system context. --- ShiftOS/ShiftOS/SystemContext.cs | 6 ++++++ 1 file changed, 6 insertions(+) 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.