This repository has been archived on 2023-10-28. You can view files and clone it, but cannot push or open issues or pull requests.
frostbite/snowlib/DataAccess.h
2020-02-06 00:23:46 +00:00

11 lines
206 B
C

#ifndef DATAACCESS_H_
#define DATAACCESS_H_
// functions for reading data from a buffer.
int getLEInt32(const unsigned char* data)
{
return *reinterpret_cast<const int*>(data);
}
#endif // DATAACCESS_H_