mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-20 08:41:21 +00:00
10 lines
306 B
C#
10 lines
306 B
C#
|
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.
|
|||
|
}
|
|||
|
}
|