mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-23 05:31:29 +00:00
Add support for LBP3 quests
This commit is contained in:
parent
4c3c152322
commit
a70a934f99
2 changed files with 3 additions and 0 deletions
|
@ -40,6 +40,7 @@ public static class FileHelper
|
|||
LbpFileType.Script => false,
|
||||
LbpFileType.Level => true,
|
||||
LbpFileType.Voice => true,
|
||||
LbpFileType.Quest => true,
|
||||
LbpFileType.Plan => true,
|
||||
LbpFileType.Jpeg => true,
|
||||
LbpFileType.Png => true,
|
||||
|
@ -121,6 +122,7 @@ public static class FileHelper
|
|||
"VOPb" => LbpFileType.Voice,
|
||||
"LVLb" => LbpFileType.Level,
|
||||
"PLNb" => LbpFileType.Plan,
|
||||
"QSTb" => LbpFileType.Quest,
|
||||
_ => readAlternateHeader(reader),
|
||||
};
|
||||
}
|
||||
|
|
|
@ -13,5 +13,6 @@ public enum LbpFileType
|
|||
Painting, // PTG, paintings
|
||||
Jpeg, // JFIF / FIF, used in sticker switches,
|
||||
Png, // used in LBP Vita
|
||||
Quest, // A LBP3 quest, used in the organizertron
|
||||
Unknown,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue