summaryrefslogtreecommitdiffstats
path: root/src/peds/DummyPed.h
blob: 5bb72d878d050e775235a21918027d2916f3a0ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "Dummy.h"

// actually unused
class CDummyPed : CDummy
{
	int32 pedType;
	int32 unknown;
};

#ifdef CHECK_STRUCT_SIZES 
static_assert(sizeof(CDummyPed) == 0x70, "CDummyPed: error");
#endif