This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
htanks/Texture.hs
2010-03-05 03:32:02 +01:00

9 lines
No EOL
252 B
Haskell

module Texture ( Texture(..)
, TextureObject
) where
import Graphics.Rendering.OpenGL.GL.Texturing.Objects (TextureObject)
data Texture = TextureWood | TextureTank | TextureCannon
deriving (Eq, Ord, Show)