This repository has been archived on 2025-03-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
htanks/src/Texture.hs
2010-03-09 03:49:15 +01:00

8 lines
268 B
Haskell

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