mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-26 09:02:22 -05:00
Move solution and projects to src
This commit is contained in:
24
src/Ryujinx.HLE/HOS/Services/Mii/DatabaseSessionMetadata.cs
Normal file
24
src/Ryujinx.HLE/HOS/Services/Mii/DatabaseSessionMetadata.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user