9 lines
222 B
Haskell
9 lines
222 B
Haskell
![]() |
module Texture ( Texture(..)
|
||
|
, TextureObject
|
||
|
) where
|
||
|
|
||
|
import Graphics.Rendering.OpenGL.GL.Texturing.Objects (TextureObject)
|
||
|
|
||
|
data Texture = TextureWood
|
||
|
deriving (Eq, Ord, Show)
|
||
|
|