mirror of
https://github.com/citra-emu/citra-nightly.git
synced 2025-02-03 06:30:58 +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
|