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
{
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.