src/sound_func.h
branchNewGRF_ports
changeset 6872 1c4a4a609f85
equal deleted inserted replaced
6871:5a9dc001e1ad 6872:1c4a4a609f85
       
     1 /* $Id$ */
       
     2 
       
     3 /** @file sound_func.h Functions related to sound. */
       
     4 
       
     5 #ifndef SOUND_FUNC_H
       
     6 #define SOUND_FUNC_H
       
     7 
       
     8 #include "sound_type.h"
       
     9 #include "vehicle_type.h"
       
    10 #include "tile_type.h"
       
    11 
       
    12 extern MusicFileSettings msf;
       
    13 
       
    14 bool SoundInitialize(const char *filename);
       
    15 uint GetNumOriginalSounds();
       
    16 
       
    17 void SndPlayTileFx(SoundFx sound, TileIndex tile);
       
    18 void SndPlayVehicleFx(SoundFx sound, const Vehicle *v);
       
    19 void SndPlayFx(SoundFx sound);
       
    20 void SndCopyToPool();
       
    21 
       
    22 #endif /* SOUND_FUNC_H */