mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-20 00:41:20 +00:00
10 lines
No EOL
306 B
C#
Executable file
10 lines
No EOL
306 B
C#
Executable file
namespace FSO.Files.Formats.IFF
|
|
{
|
|
public enum ChunkRuntimeState
|
|
{
|
|
Normal,
|
|
Patched, //unmodified, but still save when outputting PIFF
|
|
Modified, //modified. save when outputting PIFF
|
|
Delete //this chunk should not be saved, or should be saved as a deletion.
|
|
}
|
|
} |