pituicat/src/Classes/Prop.hs

14 lines
202 B
Haskell
Raw Normal View History

module Classes.Prop where
-- internal imports
import Classes.Graphics.Drawable
2020-12-23 06:47:20 +00:00
import Types.Texture
class (Drawable a) => Prop a where
residentLayer :: a -> Word
2020-12-23 06:47:20 +00:00
bindPropTexture :: a -> IO ()