mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-15 20:10:05 +00:00
12 lines
165 B
C++
12 lines
165 B
C++
namespace Core {
|
|
|
|
template <class T>
|
|
T& Global();
|
|
|
|
// Declare explicit specialisation to prevent im
|
|
class System;
|
|
template <>
|
|
System& Global();
|
|
|
|
} // namespace Core
|