aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/kernel/session.cpp
blob: 0594967f8e930ebfa8aad9ec3f7b2cd159f66443 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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() {}

}