Files
Minecraft/src/Rendering/voxelmesh.hpp
2021-03-02 17:42:24 +00:00

24 lines
258 B
C++

#ifndef MINECRAFT_RENDERER_VOXELMESH_H_
#define MINECRAFT_RENDERER_VOXELMESH_H_
#include "mesh.hpp"
class VoxelMesh : public Mesh
{
public:
VoxelMesh();
int Width;
int Height;
int Depth;
// Size is w*h*d
std::vector<uint8_t> Voxels;
};
#endif