Avara3D 0.2.0
C++ API reference
Id.h
1//
2// Id.h
3// avara3d
4//
5// Created by Morgan Davis on 1/7/26.
6// Copyright © 2026 Morgan K Davis. All rights reserved.
7//
8
9#ifndef AVARA3D_ID_H
10#define AVARA3D_ID_H
11
12#include <cstdint>
13
14// TODO: move these?
15
16using MeshId = uint32_t;
17using MaterialId = uint32_t;
18using TextureId = uint32_t;
19using SamplerId = uint32_t;
20
21#endif // AVARA3D_ID_H