Интерфейс модели
This commit is contained in:
parent
5c7bd56384
commit
7fd9bbd4d9
|
@ -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
|
Loading…
Reference in New Issue