summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/session.cpp
blob: 61457845ae8a274df3974fa82e95f97899072ab0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2015 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "core/hle/kernel/session.h"
#include "core/hle/kernel/thread.h"

namespace Kernel {

Session::Session() {
}
Session::~Session() {
}
}