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/MfGames.Nitride.IO/IfFoundOutput.cs

15 lines
307 B
C#

namespace MfGames.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,
}