ShiftOS-Rewind/ShiftOS.Engine/CodepointUpgrade.cs
AShifter c81573594f Add SaveSystem, FullScreen Terminal and stuff
Git had a horrible seizure and removed our repo but Alex-TIMEHACK helped
us get it back.
2017-11-25 08:59:48 -07:00

17 lines
321 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ShiftOS.Engine;
namespace ShiftOS.Engine
{
public class CodepointUpgrade
{
public interface ICodepointUpgrade
{
int codePoints { get; set; }
}
}
}