1
0
mirror of synced 2024-06-29 07:17:39 +00:00
Tapeti/IControllerFactory.cs

10 lines
145 B
C#

using System;
namespace Tapeti
{
public interface IControllerFactory
{
object CreateController(Type controllerType);
}
}