mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2025-01-26 00:42:52 +00:00
17 lines
208 B
C++
17 lines
208 B
C++
#include <mesosphere/processes/KBaseSession.hpp>
|
|
|
|
namespace mesosphere
|
|
{
|
|
|
|
KBaseSession::~KBaseSession()
|
|
{
|
|
}
|
|
|
|
Result KBaseSession::Initialize()
|
|
{
|
|
SetClientServerParent();
|
|
|
|
return ResultSuccess();
|
|
}
|
|
|
|
}
|