libcruft-vk/instance.hpp

16 lines
262 B
C++
Raw Normal View History

2016-02-24 11:11:41 +11:00
#ifndef __VK_INSTANCE_HPP
#define __VK_INSTANCE_HPP
#include "./object.hpp"
#include "./vk.hpp"
#include "./traits.hpp"
namespace vk {
struct instance : public instantiated<instance> {
instance (const VkInstanceCreateInfo &info);
};
}
#endif