CeresEngine 0.2.0
A game development framework
Loading...
Searching...
No Matches
MaterialImporter.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
12
13namespace CeresEngine {
14
16
17 class MaterialImporter : public TResourceImporter<MaterialImporter, MaterialImportOptions> {
18 public:
19 using TResourceImporter::TResourceImporter;
20 };
21
22} // namespace CeresEngine
Definition MaterialImporter.hpp:17
Creates a new resource importer.
Definition ResourceImporter.hpp:248
Definition Application.hpp:19
Definition MaterialImporter.hpp:15
A structure that contains import options that describes how a resource should be imported.
Definition ResourceImportOptions.hpp:16