16 lines
262 B
C++
16 lines
262 B
C++
#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
|