session.cpp 291 B

123456789101112
  1. // Copyright 2015 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "core/hle/kernel/session.h"
  5. #include "core/hle/kernel/thread.h"
  6. namespace Kernel {
  7. Session::Session() {}
  8. Session::~Session() {}
  9. } // namespace Kernel