summaryrefslogtreecommitdiffstats
path: root/src/Texture.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Texture.hs')
-rw-r--r--src/Texture.hs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Texture.hs b/src/Texture.hs
new file mode 100644
index 0000000..bf89cf9
--- /dev/null
+++ b/src/Texture.hs
@@ -0,0 +1,8 @@
+module Texture ( Texture(..)
+ , TextureObject
+ ) where
+
+import Graphics.Rendering.OpenGL.GL.Texturing.Objects (TextureObject)
+
+data Texture = TextureWood | TextureTank | TextureCannon | TextureBullet
+ deriving (Eq, Ord, Show)