mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-23 21:51:29 +00:00
18 lines
No EOL
537 B
C#
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,
|
|
} |