Add Codepoints to system context.

This commit is contained in:
Alkaline Thunder 2018-12-28 00:24:06 -05:00
parent 8477cf5e45
commit 563c26e43b

View file

@ -10,12 +10,18 @@ namespace ShiftOS
public class SystemContext : IDisposable public class SystemContext : IDisposable
{ {
private Desktop _desktop = null; private Desktop _desktop = null;
private int _codepoints = 0;
public void Dispose() public void Dispose()
{ {
_desktop = null; _desktop = null;
} }
public int GetCodepoints()
{
return this._codepoints;
}
public void Initialize() public void Initialize()
{ {
// We can't initialize the game twice. // We can't initialize the game twice.