| 1 | #include <heap/seadExpHeap.h> |
|---|---|
| 2 | |
| 3 | namespace sead |
| 4 | { |
| 5 | bool ExpHeap::isEmpty() const |
| 6 | { |
| 7 | return this->mUseList.size() == 0; |
| 8 | } |
| 9 | |
| 10 | bool ExpHeap::isFreeable() const |
| 11 | { |
| 12 | return true; |
| 13 | } |
| 14 | |
| 15 | bool ExpHeap::isResizable() const |
| 16 | { |
| 17 | return true; |
| 18 | } |
| 19 | |
| 20 | bool ExpHeap::isAdjustable() const |
| 21 | { |
| 22 | return true; |
| 23 | } |
| 24 | } // namespace sead |