// Copyright 2020 Citra Emulator Project // Licensed under GPLv2 or any later version // Refer to the license.txt file included. #pragma once namespace Core { template T& Global(); // Declare explicit specialisation to prevent im class System; template <> System& Global(); } // namespace Core