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-02-25 04:38:14 +01:00

9 lines
No EOL
236 B
Haskell

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