TDME2 1.9.121
PlayableSoundView.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
7
8using std::string;
9
10/**
11 * Playable sound view interface, which represents a view that supports playing sounds additionally
12 * @author Andreas Drewke
13 * @version $Id$
14 */
16{
17 /**
18 * Destructor
19 */
20 virtual ~PlayableSoundView() {}
21
22 /**
23 * Play sound
24 * @param soundId sound id
25 */
26 virtual void playSound(const string& soundId) = 0;
27
28 /**
29 * Stop sound
30 */
31 virtual void stopSound() = 0;
32
33};
Playable sound view interface, which represents a view that supports playing sounds additionally.
virtual void playSound(const string &soundId)=0
Play sound.