Convert to db so I don't have to parse files all the time

This commit is contained in:
Lani Aung
2021-10-18 21:03:53 -06:00
parent 21d96499da
commit 372d0ad86a
9 changed files with 137 additions and 111 deletions
+19
View File
@@ -0,0 +1,19 @@
using System;
namespace fxl.codes.kisekae.Entities
{
[Flags]
public enum Set
{
Zero = 2 ^ 0,
One = 2 ^ 1,
Two = 2 ^ 2,
Three = 2 ^ 3,
Four = 2 ^ 4,
Five = 2 ^ 5,
Six = 2 ^ 6,
Seven = 2 ^ 7,
Eight = 2 ^ 8,
Nine = 2 ^ 9
}
}