Voxellancer  0.3
A game about voxels in space
 All Classes Functions Pages
math.h
1 #pragma once
2 
3 #include <stdint.h>
4 
5 
6 class Math {
7 public:
8  static uint32_t nextPowerOf2(uint32_t n);
9 };
10 
Definition: math.h:6