Stardew Engine
Loading...
Searching...
No Matches
EngineUtils.h
Go to the documentation of this file.
1#ifndef ENGINEUTILS_H
2#define ENGINEUTILS_H
3
4#include <string.h>
5
12#ifndef ZeroMemory
13
14#define ZeroMemory(dest, numBytes) memset(dest, 0, numBytes)
15
16#endif
17
18
19#endif