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

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

#include "System.h"

namespace crepe {

class AudioSystem : public System {
public:
	using System::System;
	void update() override;

private:
	SoundContext context {};
};

} // namespace crepe