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

9 lines
236 B
Haskell
Raw Normal View History

2010-02-25 03:16:44 +01:00
module Texture ( Texture(..)
, TextureObject
) where
import Graphics.Rendering.OpenGL.GL.Texturing.Objects (TextureObject)
data Texture = TextureWood | TextureTank
2010-02-25 03:16:44 +01:00
deriving (Eq, Ord, Show)