16 lines
178 B
C++
16 lines
178 B
C++
#pragma once
|
|
|
|
namespace RE
|
|
{
|
|
namespace Bleedout
|
|
{
|
|
class Event
|
|
{
|
|
public:
|
|
// members
|
|
Actor* actorBleedingOut; // 00
|
|
};
|
|
static_assert(sizeof(Event) == 0x8);
|
|
}
|
|
}
|