Still largely works surprisingly

This commit is contained in:
Lani Aung
2026-07-08 21:55:42 -07:00
parent 094f3abbff
commit c0e15d60b9
11 changed files with 81 additions and 94 deletions
+8 -9
View File
@@ -1,11 +1,10 @@
namespace fxl.codes.kisekae.data.Entities
namespace fxl.codes.kisekae.data.Entities;
public class Palette
{
public class Palette
{
public int Id { get; set; }
public Kisekae Kisekae { get; set; }
public string FileName { get; set; }
public List<PaletteColor> Colors { get; set; } = new();
public byte[] Data { get; set; }
}
public int Id { get; set; }
public Kisekae Kisekae { get; set; }
public string FileName { get; set; }
public List<PaletteColor> Colors { get; set; } = new();
public byte[] Data { get; set; }
}