ddnet/src/game/client/components/sounds.hpp

22 lines
278 B
C++
Raw Normal View History

2008-08-29 05:34:18 +00:00
#include <game/client/component.hpp>
class SOUNDS : public COMPONENT
{
public:
// sound channels
enum
{
CHN_GUI=0,
CHN_MUSIC,
CHN_WORLD,
CHN_GLOBAL,
};
virtual void on_init();
virtual void on_render();
void play(int chn, int setid, float vol, vec2 pos);
};