10 lines
145 B
C#
10 lines
145 B
C#
using System;
|
|
|
|
namespace Tapeti
|
|
{
|
|
public interface IControllerFactory
|
|
{
|
|
object CreateController(Type controllerType);
|
|
}
|
|
}
|