Files
ss/include/nw4r/g3d/g3d_cpu.h
T
2023-12-24 11:35:03 -05:00

17 lines
288 B
C++

#ifndef NW4R_G3D_CPU_H
#define NW4R_G3D_CPU_H
#include "types_nw4r.h"
namespace nw4r
{
namespace g3d
{
namespace detail
{
void Copy32ByteBlocks(void *, const void *, u32);
void ZeroMemory32ByteBlocks(void *, u32);
}
}
}
#endif