2020-12-16 17:57:37 +00:00
|
|
|
module Classes.Prop where
|
|
|
|
|
|
|
|
-- internal imports
|
|
|
|
|
2021-04-29 18:28:52 +00:00
|
|
|
import Graphics.Classes.Drawable
|
2020-12-16 17:57:37 +00:00
|
|
|
|
2021-04-22 03:37:57 +00:00
|
|
|
class (Show a, Drawable a) => Prop a where
|
2020-12-16 17:57:37 +00:00
|
|
|
|
|
|
|
residentLayer :: a -> Word
|
2020-12-23 06:47:20 +00:00
|
|
|
|
|
|
|
bindPropTexture :: a -> IO ()
|