| 49 | } |
| 50 | |
| 51 | Error FileAccessBuffer::open_custom(const Vector<uint8_t> &p_data) { |
| 52 | data = p_data; |
| 53 | pos = 0; |
| 54 | real_size = p_data.size(); |
| 55 | return OK; |
| 56 | } |
| 57 | |
| 58 | Error FileAccessBuffer::open_internal(const String &p_path, int p_mode_flags) { |
| 59 | path = p_path; |
no test coverage detected