mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-15 10:50:33 +00:00
commit
1e11c1eac6
21 changed files with 690 additions and 388 deletions
|
@ -386,6 +386,8 @@ CMovingThing CMovingThings::StartCloseList;
|
|||
CMovingThing CMovingThings::EndCloseList;
|
||||
int16 CMovingThings::Num;
|
||||
CMovingThing CMovingThings::aMovingThings[NUMMOVINGTHINGS];
|
||||
|
||||
int32 CScrollBar::TonightsEvent;
|
||||
|
||||
void CMovingThings::Init()
|
||||
{
|
||||
|
@ -1603,7 +1605,7 @@ void CScriptPath::Update(void) {
|
|||
|
||||
void CScriptPath::Clear(void) {
|
||||
if (m_pNode)
|
||||
delete m_pNode;
|
||||
delete[] m_pNode;
|
||||
m_pNode = nil;
|
||||
m_numNodes = 0;
|
||||
for (int i = 0; i < 6; i++)
|
||||
|
|
|
@ -169,6 +169,9 @@ private:
|
|||
uint8 m_uBlue;
|
||||
float m_fScale;
|
||||
|
||||
public:
|
||||
static int TonightsEvent;
|
||||
|
||||
public:
|
||||
void SetVisibility(bool visible) { m_bVisible = visible; }
|
||||
bool IsVisible() { return m_bVisible; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue