Going back to the canvas thing

This commit is contained in:
Lani Aung
2021-12-12 13:49:19 -07:00
parent 720b387dd3
commit 262bce4549
20 changed files with 3623 additions and 537 deletions
+1 -1
View File
@@ -13,8 +13,8 @@ namespace fxl.codes.kisekae.Entities
public int PaletteGroup { get; set; }
public string Comment { get; set; }
public int Transparency { get; set; }
public Set Sets { get; set; }
public Render Render { get; set; }
public List<CelPosition> Positions { get; set; } = new();
public bool[] Sets { get; set; } = new bool[10];
}
}
-20
View File
@@ -1,20 +0,0 @@
using System;
namespace fxl.codes.kisekae.Entities
{
[Flags]
public enum Set
{
None = 0,
Zero = 1 << 0,
One = 1 << 1,
Two = 1 << 2,
Three = 1 << 3,
Four = 1 << 4,
Five = 1 << 5,
Six = 1 << 6,
Seven = 1 << 7,
Eight = 1 << 8,
Nine = 1 << 9
}
}