Voxellancer  0.3
A game about voxels in space
 All Classes Functions Pages
specialvoxel.h
1 #pragma once
2 
3 #include "voxel/voxel.h"
4 
5 
6 class SpecialVoxel: public Voxel {
7 public:
8  SpecialVoxel(const glm::ivec3& gridCell, int index, uint32_t color, float mass, float hp);
9 
10  int index() const;
11 
12 
13 protected:
14  int m_index;
15 };
16 
Definition: specialvoxel.h:6
Definition: voxel.h:15