CeresEngine 0.2.0
A game development framework
Loading...
Searching...
No Matches
AudioImporter.hpp
Go to the documentation of this file.
1//
2// CeresEngine - A game development framework
3//
4// Created by Rogiel Sulzbach.
5// Copyright (c) 2018-2022 Rogiel Sulzbach. All rights reserved.
6//
7
8#pragma once
9
11
14
15namespace CeresEngine {
16
18
19 class AudioClipImporter : public TResourceImporter<AudioClip, AudioClipImportOptions> {
20 public:
21 using TResourceImporter::TResourceImporter;
22 };
23
25
26 class AudioStreamImporter : public TResourceImporter<AudioStream, AudioStreamImportOptions> {
27 public:
28 using TResourceImporter::TResourceImporter;
29 };
30
31} // namespace CeresEngine
Definition AudioImporter.hpp:19
Definition AudioImporter.hpp:26
Creates a new resource importer.
Definition ResourceImporter.hpp:248
Definition Application.hpp:19
Definition AudioImporter.hpp:17
Definition AudioImporter.hpp:24
A structure that contains import options that describes how a resource should be imported.
Definition ResourceImportOptions.hpp:16