-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
theTwister
authored and
theTwister
committed
Aug 11, 2023
1 parent
6da2798
commit 4327e22
Showing
5 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#include "physics/havok_entity_iterator.hpp" | ||
|
||
#include "cseries/cseries.hpp" | ||
|
||
REFERENCE_DECLARE(0x04FC48E8, short, c_havok_entity_iterator::g_num_entity_iterators_in_use); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#pragma once | ||
|
||
struct hkWorld; | ||
struct c_havok_entity_iterator | ||
{ | ||
protected: | ||
bool m_iterating; | ||
bool m_inactive_simulation_islands; | ||
long m_island_index; | ||
long m_entity_index; | ||
hkWorld* m_world; | ||
long m_iteration_type; | ||
|
||
private: | ||
static short& g_num_entity_iterators_in_use; | ||
}; | ||
static_assert(sizeof(c_havok_entity_iterator) == 0x14); | ||
|