citra/src/core/global.h

18 lines
309 B
C++
Raw Normal View History

2020-03-28 16:21:10 +01:00
// Copyright 2020 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
namespace Core {
template <class T>
T& Global();
2019-12-25 22:43:51 +01:00
// Declare explicit specialisation to prevent im
class System;
template <>
System& Global();
} // namespace Core