rjx-mirror/Ryujinx/OsHle/Handles/HSession.cs
2018-02-04 20:08:20 -03:00

27 lines
No EOL
579 B
C#

namespace Ryujinx.OsHle.Handles
{
class HSession
{
public string ServiceName { get; private set; }
public bool IsInitialized { get; private set; }
public int State { get; set; }
public HSession(string ServiceName)
{
this.ServiceName = ServiceName;
}
public HSession(HSession Session)
{
ServiceName = Session.ServiceName;
IsInitialized = Session.IsInitialized;
}
public void Initialize()
{
IsInitialized = true;
}
}
}