aboutsummaryrefslogtreecommitdiffstats
path: root/src/texture.hpp
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-01 19:02:49 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-01 19:02:49 -0400
commiteb028c960be2eeaee6e5177bc9c83a489e9209f2 (patch)
tree327579b9e7c5d3722fb67d15f3008022039f3df7 /src/texture.hpp
parent5fddf26cb8bf474b6649bd727bb6493f0c2c48ba (diff)
THE CAT IS BACK
Diffstat (limited to 'src/texture.hpp')
-rw-r--r--src/texture.hpp38
1 files changed, 38 insertions, 0 deletions
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 <drumsetmonkey@gmail.com>
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef TEXTURE_HPP_
+#define TEXTURE_HPP_
+
+#include <soil/SOIL.h>
+#include <SDL2/SDL_opengl.h>
+#include <string>
+
+class Texture
+{
+private:
+public:
+ GLuint tex;
+ int width;
+ int height;
+ Texture() {};
+ Texture(std::string);
+};
+
+#endif//TEXTURE_HPP_