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
+11 -12
View File
@@ -1,14 +1,13 @@
namespace fxl.codes.kisekae.data.Entities
namespace fxl.codes.kisekae.data.Entities;
public class Cel
{
public class Cel
{
public int Id { get; set; }
public string FileName { get; set; }
public byte[] Data { get; set; }
public int OffsetX { get; set; }
public int OffsetY { get; set; }
public int Height { get; set; }
public int Width { get; set; }
public Kisekae Kisekae { get; set; }
}
public int Id { get; set; }
public string FileName { get; set; }
public byte[] Data { get; set; }
public int OffsetX { get; set; }
public int OffsetY { get; set; }
public int Height { get; set; }
public int Width { get; set; }
public Kisekae Kisekae { get; set; }
}