mirror of
https://github.com/azahar-emu/azahar.git
synced 2026-06-12 21:48:18 -04:00
11 lines
165 B
C++
11 lines
165 B
C++
namespace Core {
|
|
|
|
template <class T>
|
|
T& Global();
|
|
|
|
// Declare explicit specialisation to prevent im
|
|
class System;
|
|
template <>
|
|
System& Global();
|
|
|
|
} // namespace Core
|