11 lines
274 B
C#
11 lines
274 B
C#
8 months ago
|
namespace D2D.Utilities
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// All objects of this type can be created by hand or dynamically when needed.
|
||
|
/// Also ILazyCreating must exists only in ONE instance (like singleton).
|
||
|
/// </summary>
|
||
|
public interface ILazy
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|