demboyz/demboyz/netmessages/netmath.h

12 lines
132 B
C
Raw Normal View History

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