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