mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-05 09:15:54 +00:00
17 lines
261 B
C
17 lines
261 B
C
|
#pragma once
|
||
|
|
||
|
#include "common.h"
|
||
|
|
||
|
struct CDoor
|
||
|
{
|
||
|
float m_fAngleWhenOpened;
|
||
|
float m_fAngleWhenClosed;
|
||
|
char field_8;
|
||
|
char field_9;
|
||
|
char field_10;
|
||
|
char field_11;
|
||
|
float m_fAngle;
|
||
|
float m_fPreviousAngle;
|
||
|
float m_fAngularVelocity;
|
||
|
CVector m_vecVelocity;
|
||
|
};
|