src/sound_func.h
author rubidium
Mon, 14 Jul 2008 20:18:06 +0000
changeset 11144 7eff560780d2
parent 8653 a83f7a536919
permissions -rw-r--r--
(svn r13702) -Fix: do not overflow the order/timetable window when 'long' orders are displayed.
/* $Id$ */

/** @file sound_func.h Functions related to sound. */

#ifndef SOUND_FUNC_H
#define SOUND_FUNC_H

#include "sound_type.h"
#include "vehicle_type.h"
#include "tile_type.h"

extern MusicFileSettings msf;

bool SoundInitialize(const char *filename);
uint GetNumOriginalSounds();

void SndPlayTileFx(SoundFx sound, TileIndex tile);
void SndPlayVehicleFx(SoundFx sound, const Vehicle *v);
void SndPlayFx(SoundFx sound);
void SndCopyToPool();

#endif /* SOUND_FUNC_H */