view Implab/Components/IFactory.cs @ 256:c52691faaf21 v3

Removed obsolete App, ComponentContainer Extracted IAsyncComponent interface Working on RunnableComponent
author cin
date Wed, 11 Apr 2018 03:05:14 +0300
parents 97fbbf816844
children
line wrap: on
line source

using System;

namespace Implab.Components {
    public interface IFactory<out T> {
        T Create();
    }
}