diff options
| author | Alkaline Thunder <[email protected]> | 2018-12-28 00:24:06 -0500 |
|---|---|---|
| committer | Alkaline Thunder <[email protected]> | 2018-12-28 00:24:06 -0500 |
| commit | 563c26e43bba94849426c92aa9f0756e8bdc9ed4 (patch) | |
| tree | 7713eee15b680dfc490a5c9bcd2c6646ab5c1e05 | |
| parent | 8477cf5e4539b26e6701b9cbae7df2a62438f511 (diff) | |
| download | shiftos-challenge-563c26e43bba94849426c92aa9f0756e8bdc9ed4.tar.gz shiftos-challenge-563c26e43bba94849426c92aa9f0756e8bdc9ed4.tar.bz2 shiftos-challenge-563c26e43bba94849426c92aa9f0756e8bdc9ed4.zip | |
Add Codepoints to system context.
| -rw-r--r-- | ShiftOS/ShiftOS/SystemContext.cs | 6 |
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. |
