This commit is contained in:
jvyden 2021-10-23 18:37:44 -04:00
commit 3f557cd911
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
2 changed files with 2 additions and 2 deletions

View file

@ -41,7 +41,7 @@ namespace LBPUnion.ProjectLighthouse.Helpers {
return Encoding.ASCII.GetString(header) switch { return Encoding.ASCII.GetString(header) switch {
"TEX" => LbpFileType.Texture, "TEX" => LbpFileType.Texture,
"FSH" => LbpFileType.Script, "FSH" => LbpFileType.Script,
"VOB" => LbpFileType.Voice, "VOP" => LbpFileType.Voice,
"LVL" => LbpFileType.Level, "LVL" => LbpFileType.Level,
"PLN" => LbpFileType.Plan, "PLN" => LbpFileType.Plan,
_ => LbpFileType.Unknown, _ => LbpFileType.Unknown,

View file

@ -5,7 +5,7 @@ namespace LBPUnion.ProjectLighthouse.Types.Files {
Level, // LVL Level, // LVL
FileArchive, // .farc, (ends with FARC) FileArchive, // .farc, (ends with FARC)
Plan, // PLN, uploaded with levels Plan, // PLN, uploaded with levels
Voice, // VOB, voice data Voice, // VOP, voice data
Unknown, Unknown,
} }
} }