From eb028c960be2eeaee6e5177bc9c83a489e9209f2 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Sun, 1 Sep 2019 19:02:49 -0400 Subject: THE CAT IS BACK --- src/texture.hpp | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/texture.hpp (limited to 'src/texture.hpp') diff --git a/src/texture.hpp b/src/texture.hpp new file mode 100644 index 0000000..16987f8 --- /dev/null +++ b/src/texture.hpp @@ -0,0 +1,38 @@ +/** + * @file texture.hpp + * + * Copyright (C) 2019 Belle-Isle, Andrew + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef TEXTURE_HPP_ +#define TEXTURE_HPP_ + +#include +#include +#include + +class Texture +{ +private: +public: + GLuint tex; + int width; + int height; + Texture() {}; + Texture(std::string); +}; + +#endif//TEXTURE_HPP_ -- cgit v1.2.3