Co-authored-by: defnotken <itsdefnotken@gmail.com> Co-authored-by: cake <admin@cakeandbanana.nl> Reviewed-on: #88 Reviewed-by: cake <cake@noreply.git.lightless-sync.org> Co-authored-by: defnotken <defnotken@noreply.git.lightless-sync.org> Co-committed-by: defnotken <defnotken@noreply.git.lightless-sync.org>
9 lines
321 B
C#
9 lines
321 B
C#
using System.Runtime.InteropServices;
|
|
namespace LightlessSync.Services.CharaData.Models;
|
|
|
|
[StructLayout(LayoutKind.Auto)]
|
|
public readonly record struct CharacterAnalysisObjectSummary(int EntryCount, long TotalTriangles, long TexOriginalBytes, long TexCompressedBytes)
|
|
{
|
|
public bool HasEntries => EntryCount > 0;
|
|
}
|