mirror of
https://github.com/halpz/re3.git
synced 2025-05-01 13:07:57 +03:00
Reverse CWorld
This commit is contained in:
parent
6923117715
commit
52d0d811b7
8 changed files with 867 additions and 34 deletions
|
@ -865,6 +865,16 @@ CEntity::ModifyMatrixForBannerInWind(void)
|
|||
UpdateRwFrame();
|
||||
}
|
||||
|
||||
void
|
||||
CEntity::AddSteamsFromGround1(CPtrList& list)
|
||||
{
|
||||
CPtrNode *pNode = list.first;
|
||||
while (pNode) {
|
||||
((CEntity*)pNode->item)->AddSteamsFromGround(nil);
|
||||
pNode = pNode->next;
|
||||
}
|
||||
}
|
||||
|
||||
#include <new>
|
||||
|
||||
class CEntity_ : public CEntity
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue