Интерфейс модели

This commit is contained in:
parent 5c7bd56384
commit 7fd9bbd4d9
1 changed files with 13 additions and 0 deletions

13
include/I_Model.h Normal file
View File

@ -0,0 +1,13 @@
#ifndef I_MODEL_H
#define I_MODEL_H
#include <vulkan/vulkan.h>
class I_Model
{
public:
virtual void render(VkCommandBuffer commandBuffer) = 0;
};
#endif // I_MODEL_H