Seaside/SpyCustom/sdk/vcollide.h

18 lines
275 B
C
Raw Normal View History

2021-06-16 18:49:07 +03:00
#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