Mercurial > pub > ImplabNet
view Implab/IResolvable`1.cs @ 273:79110a16cab7 v3
Working on Unity xml configuration: Refactoring in progress
author | cin |
---|---|
date | Thu, 26 Apr 2018 19:35:01 +0300 |
parents | fb70574741a1 |
children |
line wrap: on
line source
using System; namespace Implab { public interface IResolvable<in T> { void Resolve(T value); void Reject(Exception reason); } }