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/IResolvingOperation.cs
2022-06-25 21:15:33 -05:00

10 lines
224 B
C#

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