mirror of
https://github.com/DarthAffe/HPPH.git
synced 2025-12-13 05:48:57 +00:00
12 lines
294 B
C#
12 lines
294 B
C#
using System.Runtime.CompilerServices;
|
|
|
|
namespace HPPH;
|
|
|
|
[SkipLocalsInit]
|
|
internal readonly struct Generic4LongData(long l1, long l2, long l3, long l4)
|
|
{
|
|
public readonly long L1 = l1;
|
|
public readonly long L2 = l2;
|
|
public readonly long L3 = l3;
|
|
public readonly long L4 = l4;
|
|
} |