Mercurial > pub > ImplabNet
view Implab/IDispatcher.cs @ 272:9d1cca834b05 v3
preview version of Unity xml configuration
author | cin |
---|---|
date | Thu, 26 Apr 2018 03:14:54 +0300 |
parents | 5cb4826c2c2a |
children |
line wrap: on
line source
using System; namespace Implab { public interface IDispatcher { void Enqueue(Action job); void Enqueue<T>(Action<T> job, T arg); } }