blob: 35c48e8c3d7f2eec7c8200d768f1134480a58eda (
plain)
1
2
3
4
5
6
7
8
9
|
module Texture ( Texture(..)
, TextureObject
) where
import Graphics.Rendering.OpenGL.GL.Texturing.Objects (TextureObject)
data Texture = TextureWood | TextureTank
deriving (Eq, Ord, Show)
|