stk-code_catmod/lib/irrlicht/source/Irrlicht/MoltenVK.h
2022-04-15 17:05:38 +08:00

25 lines
547 B
C++

#ifndef HEADER_MAC_VULKAN_HPP
#define HEADER_MAC_VULKAN_HPP
#ifdef DLOPEN_MOLTENVK
namespace irr
{
class MoltenVK
{
private:
bool m_loaded;
void* m_handle;
public:
// ------------------------------------------------------------------------
MoltenVK();
// ------------------------------------------------------------------------
~MoltenVK();
// ------------------------------------------------------------------------
bool loaded() const { return m_loaded; }
};
}
#endif
#endif