1
0
mirror of synced 2024-07-03 09:00:36 +00:00
Tapeti/IControllerFactory.cs
2016-11-17 09:05:39 +01:00

10 lines
145 B
C#

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