8 lines
140 B
Haskell
8 lines
140 B
Haskell
|
module Animation where
|
||
|
|
||
|
import Types.Animation
|
||
|
|
||
|
animFloats :: AnimId -> Bool
|
||
|
animFloats (AnimId "computer" _ _) = True
|
||
|
animFloats _ = False
|