1
0
mirror of synced 2024-07-06 01:50:37 +00:00
Tapeti/Default/DefaultControllerFactory.cs
2016-11-17 09:05:39 +01:00

13 lines
251 B
C#

using System;
namespace Tapeti.Default
{
public class DefaultControllerFactory : IControllerFactory
{
public object CreateController(Type controllerType)
{
throw new NotImplementedException();
}
}
}