Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
Model.hpp
1#pragma once
2
3#include <stdint.h>
4
5namespace Grindstone {
6 namespace Formats {
7 namespace Model {
8 enum class IndexSize : uint8_t {
9 Bit16,
10 Bit32
11 };
12
13 namespace V1 {
14 struct Header {
15 uint32_t totalFileSize = 0;
16 uint32_t version = 1;
17 uint32_t meshCount = 0;
18 uint64_t vertexCount = 0;
19 uint64_t indexCount = 0;
20 IndexSize isUsing32BitIndices = IndexSize::Bit16;
21 bool hasVertexPositions = false;
22 bool hasVertexNormals = false;
23 bool hasVertexTangents = false;
24 uint32_t vertexUvSetCount = 0;
25 int numWeightPerBone = 4;
26 };
27 }
28 }
29 }
30}