mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-15 20:06:40 +00:00
13 lines
189 B
C#
13 lines
189 B
C#
|
using System;
|
||
|
|
||
|
namespace Ryujinx.Horizon.Sdk.Lm
|
||
|
{
|
||
|
[Flags]
|
||
|
enum LogPacketFlags : byte
|
||
|
{
|
||
|
IsHead = 1 << 0,
|
||
|
IsTail = 1 << 1,
|
||
|
IsLittleEndian = 1 << 2
|
||
|
}
|
||
|
}
|