aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system/AudioSystem.h
blob: d0b4f9a90854b639fd775ba079f2f3c9100647ea (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 "../api/ResourceManager.h"

#include "System.h"

namespace crepe {

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

private:
	SoundContext context {};
	ResourceManager & resman = ResourceManager::get_instance();
};

} // namespace crepe