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;
|
|
}
|