Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions symbolic-unreal/src/container.rs
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,11 @@ impl Unreal4File {
&self.bytes
}

/// Returns the raw contents of this file.
pub fn into_bytes(self) -> Bytes {
self.bytes
}

/// Returns the file type.
pub fn ty(&self) -> Unreal4FileType {
if self.name() == "CrashReportClient.ini" {
Expand Down
Loading