Parse 12 vs 24 bit colors eventually

This commit is contained in:
Lani Aung
2021-10-02 19:18:58 -06:00
parent 66ccf83051
commit 4b4fffdbf1
15 changed files with 1447 additions and 29 deletions
+6
View File
@@ -2,6 +2,12 @@ namespace fxl.codes.kisekae.Models
{
public class Point
{
public Point(int x, int y)
{
X = x;
Y = y;
}
public int X { get; set; }
public int Y { get; set; }
}