ProjectLighthouse/ProjectLighthouse/Files/LbpFileType.cs
2022-08-17 16:29:28 -04:00

18 lines
No EOL
537 B
C#

namespace LBPUnion.ProjectLighthouse.Files;
public enum LbpFileType
{
Script, // .ff, FSH
Texture, // TEX
Level, // LVL
CrossLevel, // PRF, Cross controller level
FileArchive, // .farc, (ends with FARC)
Plan, // PLN, uploaded with levels
Voice, // VOP, voice data
MotionRecording, // used in LBP2+/V for the motion recorder
Painting, // PTG, paintings
Jpeg, // JFIF / FIF, used in sticker switches,
Png, // used in LBP Vita
Quest, // A LBP3 quest, used in the organizertron
Unknown,
}