From 7fd9bbd4d9b6b383c42533f190c351af12bb9295 Mon Sep 17 00:00:00 2001 From: "re.kovalev" Date: Thu, 7 Apr 2022 12:05:16 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=BD=D1=82=D0=B5=D1=80=D1=84=D0=B5?= =?UTF-8?q?=D0=B9=D1=81=20=D0=BC=D0=BE=D0=B4=D0=B5=D0=BB=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/I_Model.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 include/I_Model.h diff --git a/include/I_Model.h b/include/I_Model.h new file mode 100644 index 0000000..425af8f --- /dev/null +++ b/include/I_Model.h @@ -0,0 +1,13 @@ +#ifndef I_MODEL_H +#define I_MODEL_H + +#include + +class I_Model +{ + public: + virtual void render(VkCommandBuffer commandBuffer) = 0; + +}; + +#endif // I_MODEL_H \ No newline at end of file