Link CCrc32.cpp

This commit is contained in:
2022-07-30 05:33:31 -07:00
parent 4a01665439
commit a404575f97
3 changed files with 53 additions and 1 deletions

10
include/Kyoto/CCrc32.hpp Normal file
View File

@@ -0,0 +1,10 @@
#ifndef __CCRC32_HPP__
#define __CCRC32_HPP__
#include "types.h"
class CCRC32 {
public:
static u32 Calculate(const void* data, u32 length);
};
#endif // __CCRC32_HPP__