mirror of
https://github.com/halpz/re3.git
synced 2025-01-07 20:15:27 +00:00
12 lines
177 B
C
12 lines
177 B
C
|
#pragma once
|
||
|
|
||
|
#include "Dummy.h"
|
||
|
|
||
|
// actually unused
|
||
|
class CDummyPed : CDummy
|
||
|
{
|
||
|
int32 pedType;
|
||
|
int32 unknown;
|
||
|
};
|
||
|
static_assert(sizeof(CDummyPed) == 0x70, "CDummyPed: error");
|