mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Slightly mapped out the CMDLCache class, to the point the pointers to its members are no longer needed. Also fixed a bug were the studiodata pointer was dereferenced before checking if its not null, this check did exist, but was performed too late. Fully implemented the CUtlDict class for m_MDLDict. Slightly optimized the initialization of the error model handles.
12 lines
370 B
C
12 lines
370 B
C
#ifndef IDATACACHE_H
|
|
#define IDATACACHE_H
|
|
|
|
//---------------------------------------------------------
|
|
// Cache-defined handle for a cache item
|
|
//---------------------------------------------------------
|
|
FORWARD_DECLARE_HANDLE(memhandle_t);
|
|
typedef memhandle_t DataCacheHandle_t;
|
|
#define DC_INVALID_HANDLE ((DataCacheHandle_t)0xDEADFEEDDEADFEED)
|
|
|
|
#endif // IDATACACHE_H
|