From f949692714e72a0e2d45ebb6a5d698424ab71dee Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Mon, 25 Dec 2017 13:54:09 +0000 Subject: [Broken] Reorganising and fixing. --- yage/core/texture.h | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 yage/core/texture.h (limited to 'yage/core/texture.h') diff --git a/yage/core/texture.h b/yage/core/texture.h deleted file mode 100644 index aec7b906..00000000 --- a/yage/core/texture.h +++ /dev/null @@ -1,32 +0,0 @@ -/** --------------------------------------------------------------------------- - * @file: texture.h - * - * Copyright (c) 2017 Yann Herklotz Grave - * MIT License, see LICENSE file for more details. - * ---------------------------------------------------------------------------- - */ - -#ifndef YAGE_CORE_TEXTURE_H -#define YAGE_CORE_TEXTURE_H - -#include - -namespace yage -{ - -struct Texture { - GLuint id; - int width; - int height; - - Texture() : id(0), width(0), height(0) {} - - Texture(GLuint id_i, int width_i, int height_i) - : id(id_i), width(width_i), height(height_i) - { - } -}; - -} // namespace yage - -#endif -- cgit