GlitchyEngineHelper project

This commit is contained in:
Simon Lübeß
2022-04-09 12:33:05 +02:00
parent d47bc37886
commit b94c84d304
8 changed files with 135 additions and 1 deletions
@@ -0,0 +1,16 @@
// GlitchyEngineHelper.cpp : Defines the entry point for the application.
//
#include "GlitchyEngineHelper.h"
using namespace std;
GE_EXPORT int GE_CALLTYPE test(int x, int y)
{
return x + y;
}
GE_EXPORT XXH64_hash_t bla(void* buffer, size_t size, XXH64_hash_t seed)
{
return XXH64(buffer, size, seed);
}