Add CScriptActor

Former-commit-id: febfd1faae
This commit is contained in:
2022-11-04 01:25:39 -04:00
parent dc04591f0d
commit 9cece32038
19 changed files with 398 additions and 48 deletions

View File

@@ -75,12 +75,14 @@ public:
struct const_iterator {
node* mNode;
const header* mHeader;
bool x8_;
// bool x8_;
// TODO why is this bool here?
const_iterator(node* node, const header* header, bool b)
: mNode(node), mHeader(header), x8_(b) {}
: mNode(node), mHeader(header)/*, x8_(b)*/ {}
const P* operator->() const { return mNode->get_value(); }
const P* operator*() const { return mNode->get_value(); }
bool operator==(const const_iterator& other) const {
return mNode == other.mNode && mHeader == other.mHeader;
}