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/IResolvingOperation.cs

10 lines
232 B
C#

namespace MfGames.Nitride;
/// <summary>
/// Indicates an operation that resolved (completely processes the input)
/// before returning from the `Run` operation.
/// </summary>
public interface IResolvingOperation : IOperation
{
}