Add named events

This commit is contained in:
2023-08-11 01:33:32 +02:00
parent 55866a42a5
commit 52914a393e
4 changed files with 260 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
/*
* 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/.
*/
#include "Event.hpp"
namespace openVulkanoCpp
{
std::vector<INamedEventProcessor*> INamedEventProcessor::processors;
}