diff options
Diffstat (limited to 'ShiftOS.Engine/CodepointUpgrade.cs')
| -rw-r--r-- | ShiftOS.Engine/CodepointUpgrade.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ShiftOS.Engine/CodepointUpgrade.cs b/ShiftOS.Engine/CodepointUpgrade.cs new file mode 100644 index 0000000..9f4f0f1 --- /dev/null +++ b/ShiftOS.Engine/CodepointUpgrade.cs @@ -0,0 +1,17 @@ +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; } + } + } +} |
