mirror of
https://github.com/dashr9230/SA-MP.git
synced 2025-01-08 18:43:31 +08:00
20 lines
301 B
C++
20 lines
301 B
C++
|
|
#pragma once
|
|
|
|
//----------------------------------------------------------
|
|
|
|
class CEntity
|
|
{
|
|
public:
|
|
CEntity() {
|
|
memset(field_4, 0, sizeof(field_4));
|
|
};
|
|
virtual ~CEntity() {};
|
|
|
|
char field_4[60];
|
|
int field_40;
|
|
int field_44;
|
|
};
|
|
|
|
//----------------------------------------------------------
|