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