Mercurial > pub > ImplabNet
view Implab/IResolvable`1.cs @ 267:6b3e5c48131b v3
Working on Unity xml configuration
author | cin |
---|---|
date | Fri, 20 Apr 2018 19:05:12 +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); } }