Renaming & more CActor progress

Former-commit-id: bcfefcc34a
This commit is contained in:
2022-08-15 22:14:28 -04:00
parent 9675db47b4
commit f3e607a3af
82 changed files with 1579 additions and 1043 deletions

View File

@@ -20,7 +20,7 @@ public:
delete x0_ptr;
x0_ptr = ptr;
}
operator bool() const { return x0_ptr != nullptr; }
bool null() const { return x0_ptr == nullptr; }
T& operator*() { return *x0_ptr; }
const T& operator*() const { return *x0_ptr; }
};