mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-26 03:52:23 -05:00
25 lines
660 B
C#
25 lines
660 B
C#
using Ryujinx.HLE.HOS.Services.Mii.Types;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Mii
|
|
{
|
|
class DatabaseSessionMetadata
|
|
{
|
|
public uint InterfaceVersion;
|
|
public ulong UpdateCounter;
|
|
|
|
public SpecialMiiKeyCode MiiKeyCode { get; private set; }
|
|
|
|
public DatabaseSessionMetadata(ulong updateCounter, SpecialMiiKeyCode miiKeyCode)
|
|
{
|
|
InterfaceVersion = 0;
|
|
UpdateCounter = updateCounter;
|
|
MiiKeyCode = miiKeyCode;
|
|
}
|
|
|
|
public bool IsInterfaceVersionSupported(uint interfaceVersion)
|
|
{
|
|
return InterfaceVersion >= interfaceVersion;
|
|
}
|
|
}
|
|
}
|