Seaside/SpyCustom/sdk/vcollide.h
2021-06-16 18:49:07 +03:00

18 lines
275 B
C++

#ifndef VCOLLIDE_H
#define VCOLLIDE_H
#ifdef _WIN32
#pragma once
#endif
class CPhysCollide;
struct vcollide_t
{
unsigned short solidCount : 15;
unsigned short isPacked : 1;
unsigned short descSize;
CPhysCollide** solids;
char* pKeyValues;
};
#endif