From 83c78e2b5cc9b0cb737ec3785722ae280bd29b65 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Fri, 14 Feb 2020 10:43:26 +0100 Subject: Use shader from file.. --- include/Vertex2D.hpp | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 include/Vertex2D.hpp (limited to 'include/Vertex2D.hpp') diff --git a/include/Vertex2D.hpp b/include/Vertex2D.hpp deleted file mode 100644 index de22cd9..0000000 --- a/include/Vertex2D.hpp +++ /dev/null @@ -1,18 +0,0 @@ -#pragma once - -#include "types.hpp" - -namespace amalgine -{ - class Vertex2D - { - public: - Vertex2D(f32 _x = 0.0f, f32 _y = 0.0f) : x(_x), y(_y) - { - - } - - f32 x; - f32 y; - }; -} -- cgit v1.2.3