Renaming & more CActor progress

This commit is contained in:
2022-08-15 22:14:28 -04:00
parent 8e90988b5c
commit bcfefcc34a
82 changed files with 1579 additions and 1043 deletions

View File

@@ -27,15 +27,14 @@ public:
// x4_item = other.x4_item;
// other.x0_has = false;
// }
T* get() { return x4_item; }
/* const*/ T* get() const { return x4_item; }
T* operator->() { return get(); }
const T* operator->() const { return get(); }
T* get() const { return x4_item; }
T* operator->() const { return x4_item; }
T& operator*() const { return *x4_item; }
T* release() const {
x0_has = false;
return x4_item;
}
operator bool() const { return x0_has; }
bool null() const { return x4_item == nullptr; }
};
} // namespace rstl