diff --git a/openVulkanoCpp/Base/Wrapper.hpp b/openVulkanoCpp/Base/Wrapper.hpp new file mode 100644 index 0000000..b37939f --- /dev/null +++ b/openVulkanoCpp/Base/Wrapper.hpp @@ -0,0 +1,16 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + +#pragma once + +#include + +namespace OpenVulkano +{ + template using Ptr = std::shared_ptr; + template using Weak = std::weak_ptr; + template using Unique = std::unique_ptr; +}