Botcraft 1.21.4
Loading...
Searching...
No Matches
Enums.hpp
Go to the documentation of this file.
1#pragma once
2
3namespace Botcraft
4{
5 namespace Renderer
6 {
7 /// @brief Transparency values for textures
8 enum class Transparency
9 {
10 Opaque, // Alpha = 255
11 Total, // Alpha == 0
12 Partial // 0 < Alpha < 255
13 };
14
15 /// @brief Animation status of a texture
16 enum class Animation
17 {
18 Static,
20 };
21 } // Renderer
22} // Botcraft
Animation
Animation status of a texture.
Definition Enums.hpp:17
Transparency
Transparency values for textures.
Definition Enums.hpp:9