demboyz/demboyz/netmessages/netmath.h

12 lines
132 B
C++

#pragma once
#include <stdint.h>
namespace math
{
uint32_t log2(uint32_t value);
uint32_t BitsToBytes(uint32_t bits);
}