mirror of
https://github.com/starr-dusT/citra.git
synced 2024-10-02 10:26:17 -07: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
|