| 536 | } |
| 537 | |
| 538 | uint64_t FileAccessGDRE::get_length() const { |
| 539 | ERR_FAIL_COND_V_MSG(proxy.is_null(), 0, "File must be opened before use."); |
| 540 | return proxy->get_length(); |
| 541 | } |
| 542 | |
| 543 | bool FileAccessGDRE::eof_reached() const { |
| 544 | ERR_FAIL_COND_V_MSG(proxy.is_null(), true, "File must be opened before use."); |