This repository has been archived on 2023-02-02. You can view files and clone it, but cannot push or open issues or pull requests.
mfgames-nitride-cil/src/Nitride.IO/IfFoundOutput.cs
2022-07-18 17:03:30 -05:00

15 lines
299 B
C#

namespace Nitride.IO;
public enum IfFoundOutput
{
/// <summary>
/// If the entity is found, then remove it from output.
/// </summary>
RemoveFromOutput,
/// <summary>
/// If the entity is found, then keep it in the output sequence.
/// </summary>
ReturnInOutput,
}