blob: d3d5aeb656e0ddef1a0e39065e05351464f29b08 (
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 "../ResourceManager.h"
#include "System.h"
namespace crepe {
class AudioSystem : public System {
public:
using System::System;
void update() override;
private:
SoundContext context {};
ResourceManager resource_manager {};
};
} // namespace crepe
|