mysimulation/server/tso.files/Formats/IFF/ChunkRuntimeInfo.cs
Tony Bark 8fec258215 Added FSO.Files for use with the API server
Don't ask me. FreeSO is the prime example of dependency hell.
2024-05-01 04:38:12 -04:00

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.
}
}