mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-12-02 22:34:23 +01: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
|