2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 11:51:21 +00:00
metaforce/Runtime/CCRC32.hpp

13 lines
173 B
C++

#pragma once
#include <cstdint>
namespace metaforce {
class CCRC32 {
public:
static uint32_t Calculate(const void* data, uint32_t length);
};
} // namespace metaforce