Files
loop/src/Dodge/Data/SoundOrigin.hs
T
2021-04-15 21:35:03 +02:00

21 lines
406 B
Haskell

module Dodge.Data.SoundOrigin
where
data SoundOrigin = InventorySound
| BackgroundSound
| OnceSound
| CrSound Int
| CrWeaponSound Int
| WallSound Int
| CrReloadSound Int
| Flamer
| ShellSound Int
| Flame
| LasSound
| FootstepSound Int
| BlockDegradeSound Int
| CrHitSound Int
| BarrelHiss Int
| GlassBreakSound Int
deriving (Eq,Ord,Show)