aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system/AudioSystem.h
blob: 8fb681f03a0776dbc58c677b521f6c0d681529a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include "../facade/SoundContext.h"

#include "System.h"

namespace crepe {

class AudioSystem : public System {
public:
	AudioSystem(SoundContext & ctx);

public:
	void update();

private:
	SoundContext & ctx;
};

} // namespace crepe