Grindstone Game Engine
v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
AssetType.hpp
1
#pragma once
2
3
#include <stdint.h>
4
5
namespace
Grindstone {
6
enum class
AssetType : uint16_t {
7
Undefined,
8
Texture,
9
Shader,
10
Material,
11
AudioClip,
12
Mesh3d,
13
Rig,
14
Animation,
15
Script,
16
Scene,
17
Count
18
};
19
20
const
char
* GetAssetTypeToString(AssetType type);
21
AssetType GetAssetTypeFromString(
const
char
* type);
22
}
sources
code
Common
ResourcePipeline
AssetType.hpp
Generated by
1.12.0